mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
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"
26 lines
620 B
Plaintext
26 lines
620 B
Plaintext
puts "============="
|
|
puts "0030824: Visualization, PrsMgr_PresentableObject - A new flag to disable automatic selection 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
|
|
|
|
vselect 0 0 200 200
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|