1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/vis/bug30823
asl 0d56f7433b 0030824: Visualization, PrsMgr_PresentableObject - A new flag to disable automatic selection of children
A new flag myToPropagateVisualState is introduced for PrsMgr_PresentableObject: by default it is true, it means that the visual state (display/erase/color) should be propagated to all children. If false, the visual state is not propagated.
The flag can be set via the method ToPropagateVisualState() or via Draw command: "vparent <parent> -ignoreVisu"
2019-07-04 19:36:30 +03:00

26 lines
618 B
Plaintext

puts "============="
puts "0030823: Visualization, PrsMgr_PresentableObject - A new flag to disable automatic display/erase of children"
puts "============="
pload MODELING VISUALIZATION
vclear
vinit View1
psphere parent 3
vdisplay -dispMode 1 parent
box child1 1 1 1
box child2 1 1 1
vdisplay child1 -dispMode 1
vdisplay child2 -dispMode 1
vlocation child1 -setLocation 10 0 0
vlocation child2 -setLocation 20 0 0
vparent parent -ignoreVisu
vchild parent -ignoreParentTrsf -add child1
vchild parent -ignoreParentTrsf -add child2
vfit
verase parent
checkview -screenshot -3d -path ${imagedir}/${test_image}.png