mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
New methods AddChildWithCurrentTransformation(), RemoveChildWithRestoreTransformation() are implemented to keep the current global transformation of the object (child). In DRAW a new command vchild is provided for testing low-level connections between presentations.
36 lines
957 B
Plaintext
36 lines
957 B
Plaintext
puts "============"
|
|
puts "0030561: Visualization, PrsMgr_PresentableObject - Keep the local transformation for child in AddChild()"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
vclear
|
|
vinit View1
|
|
|
|
psphere m 3
|
|
vdisplay -dispMode 1 m
|
|
vlocation m -setLocation 20 10 20
|
|
box b1 1 1 1
|
|
box b2 1 1 1
|
|
vdisplay b1 -dispMode 1
|
|
vdisplay b2 -dispMode 1
|
|
vlocation b1 -setLocation -10 0 0
|
|
vlocation b2 -setLocation -10 0 0
|
|
|
|
set r {1 2 3 4 5}
|
|
foreach i $r { psphere c$i 1 }
|
|
foreach i $r { vdisplay -dispMode 1 c$i }
|
|
foreach i $r { vlocation c$i -setLocation [expr 20+10*$i] 10 20 }
|
|
foreach i $r { vchild m -ignoreParentTrsf -add c$i }
|
|
vchild m -add b1
|
|
|
|
# change main shape's local transformation, the children should be correspondingly moved
|
|
vlocation m -setLocation 100 20 20
|
|
|
|
# change one of sub-shape's local transformation, other shapes MUST NOT move
|
|
vlocation c4 -setLocation 40 10 0
|
|
|
|
vfit
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|