Page 1 of 1

[SOLVED] Difference between .Rotation.RawAxis and .Rotation.Axis ?

Posted: Thu Sep 22, 2022 7:42 pm
by manos

Code: Select all

print(' Raw Axis=',obj.Placement.Rotation.RawAxis)
print(' Axis=',obj.Placement.Rotation.Axis)
Hello
Is there any difference between Placement.Rotation.RawAxis and Placement.Rotation.Axis ?
Thanks

Re: Difference between .Rotation.RawAxis and .Rotation.Axis ?

Posted: Fri Sep 23, 2022 8:55 am
by Roy_043
Axis is the unit vector calculated from the RawAxis value.

Re: Difference between .Rotation.RawAxis and .Rotation.Axis ?

Posted: Fri Sep 23, 2022 1:48 pm
by manos
Roy_043 wrote: Fri Sep 23, 2022 8:55 am Axis is the unit vector calculated from the RawAxis value.
Thank you Roy_043