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.
31 lines
617 B
Plaintext
31 lines
617 B
Plaintext
puts "============"
|
|
puts "CR6987"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Impossible to change edge line type in 3D View
|
|
#######################################################################
|
|
|
|
pload VISUALIZATION
|
|
|
|
set anImage1 $imagedir/${casename}_1.png
|
|
set anImage2 $imagedir/${casename}_2.png
|
|
set anImage3 $imagedir/${casename}_3.png
|
|
|
|
vinit
|
|
box b 1 1 1
|
|
vdisplay b
|
|
vfit
|
|
vsetdispmode b 1
|
|
vsetedgetype b -type DASH -color 10 255 10
|
|
vdump $anImage1
|
|
|
|
vsetinteriorstyle b EMPTY
|
|
vdump $anImage2
|
|
|
|
vsetinteriorstyle b SOLID
|
|
vunsetedgetype b
|
|
vdump $anImage3
|
|
|
|
|