mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
gp_Trsf::SetRotationPart() - added method replacing rotation matrix without reseting other components, similar to existing SetTraslationPart() and SetScaleFactor(). Transformation multiplication order has been fixed for vlocation arguments -rotate, -translate, -mirror and -scale. Added -prerotate, -pretranslate, -premirror and -prescale options following previous behavior. vlocation -setRotation now uses new method gp_Trsf::SetRotationPart() for consistency with methods -setLocation and -setScale.
38 lines
692 B
Plaintext
38 lines
692 B
Plaintext
puts "============"
|
|
puts "0025276: Visualization - Lighting is broken if some kinds of transformation applied to a shape"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
vinit
|
|
box b1 1 6 1
|
|
vsetdispmode 1
|
|
vdisplay b1
|
|
vconnectto b2 6 0 0 b1
|
|
box b3 7 1 1
|
|
vdisplay b3
|
|
vlocation b3 -translate 0 4 0
|
|
vconnect z 0 0 0 b1 b2 b3
|
|
|
|
vconnect z1 0 0 0 z
|
|
vlocation z1 -translate 10 0 0
|
|
|
|
vconnect z2 0 10 0 z
|
|
vlocation z2 -prerotate 0 0 0 1 0 0 90
|
|
|
|
vconnect z3 -10 0 0 z
|
|
vlocation z3 -prescale 0 0 0 0.5
|
|
|
|
vconnect z4 0 0 0 z
|
|
vlocation z4 -copyFrom z3
|
|
|
|
psphere sp 3
|
|
vdisplay sp
|
|
vlocation sp -copyFrom z3
|
|
vlocation sp -reset
|
|
|
|
vlocation z -mirror 0 -0.5 0 0 1 0
|
|
vfit
|
|
|
|
vdump $imagedir/${casename}.png
|