1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/vis/bug24288_2
apl 1d7ca641c7 0024351: Test cases for AIS dimension presentations to check arrow orientation, text position
- Added test cases to check label and arrows positioning of AIS length, angle, radius, diameter dimensions;
- Added new arguments to "vdim" command to modify "flyout", "arrow orientation", "label position" properties;
- Corrected bug: duplication of text label of linear dimensions for the horizontal-centered text.
- Rename and revise argument interface of "vdimension" (vdim) command.
- Correct test cases for new command name and arguments style.

corrected test cases - check with testdiff instead of "checkcolor"
2013-11-21 17:30:40 +04:00

47 lines
1003 B
Plaintext

puts "============"
puts "CR24288"
puts "============"
puts ""
#######################################################################
# Provide a text flipping
# Test for text flipping after Y rotation
#######################################################################
pload VISUALIZATION
set m_pi 3,14
set m_pi2 1,57
vinit
vpoint radP1 0 0 0
vpoint radP2 50 50 0
vpoint radP3 100 0 0
vcircle circle radP1 radP2 radP3 0
vrotate 0 -$m_pi2 0
verase radP1 radP2 radP3
vdimension radius name=dim text=3d circle
vdisplay dim
vfit
vmoveto 110 111
set x_coord 196
set y_coord 196
checkcolor $x_coord $y_coord 0 1 1
if { $stat != 1 } {
puts "Error : Highlighting of radius dimension with 3d text before flipping is wrong."
}
# Y axis rotation
vrotate 0 $m_pi 0
vfit
vmoveto 185 246
set x_coord 113
set y_coord 294
checkcolor $x_coord $y_coord 0 1 1
if { $stat != 1 } {
puts "Error : Highlighting of radius dimension with 3d text with flipping after y rotation is wrong."
}
set only_screen 1