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.
23 lines
581 B
Plaintext
23 lines
581 B
Plaintext
puts "============"
|
|
puts "0031673: Draw Harness, ViewerTest - vlocation -rotate is applied in opposite order"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
box b -1 -1 -1 2 2 2
|
|
explode b F
|
|
vclear
|
|
vinit View1
|
|
vdisplay -dispMode 0 b_1 b_3 b_4 b_6
|
|
vdisplay -dispMode 1 b_2 b_5
|
|
vfit
|
|
vzoom 0.4
|
|
vlocation b_2 -reset
|
|
vlocation b_5 -reset
|
|
vlocation b_2 -rotate 1 -1 -1 0 1 0 90
|
|
vlocation b_2 -rotate -1 -1 -1 0 1 0 90
|
|
vlocation b_5 -rotate -1 -1 -1 0 1 0 90
|
|
if { [vreadpixel 170 380 -rgb -name] == "BLACK" } { puts "Error: wrong rotation" }
|
|
|
|
vdump ${imagedir}/${casename}.png
|