Returns whether this transformation has a valid scaling orientation.
oBoolean = SITransformation.HasScalingOrientation(); |
Boolean True if this vector transformation has a valid scaling orientation; otherwise False.
set transfo = XSIMath.CreateTransform ' this transfo should not have a valid scaling orientation Application.LogMessage "Has scaling orientation: " & transfo.HasScalingOrientation transfo.SetScalingOrientationFromXYZAngles 2.0, 2.0, 4.0 ' this transfo should have a valid scaling orientation Application.LogMessage "Has scaling orientation: " & transfo.HasScalingOrientation |