mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Added command vsetedgetype; added test case bugs/vis/bug6897 to test edge type management. vunsetedgetype DRAW command was added and test case was updated. added -force option to set edge type commands to force redisplay. Otherwise primitive aspects are updated without object redisplaying.
24 lines
596 B
Plaintext
24 lines
596 B
Plaintext
puts "============"
|
|
puts "CR6987"
|
|
puts "============"
|
|
puts ""
|
|
##########################################################################
|
|
# Impossible to change edge line type in 3D View
|
|
# Tests forced redisplay of object after aspect parameter's been changed
|
|
##########################################################################
|
|
|
|
pload VISUALIZATION
|
|
|
|
set anImage1 $imagedir/${casename}_1.png
|
|
set anImage2 $imagedir/${casename}_2.png
|
|
|
|
vinit
|
|
box b 1 1 1
|
|
vdisplay b
|
|
vfit
|
|
vsetdispmode b 1
|
|
vsetedgetype b -type DASH -color 10 255 10 -force
|
|
vdump $anImage1
|
|
|
|
vunsetedgetype b -force
|
|
vdump $anImage2 |