この変換に、有効なスケーリング方向があるかどうかを戻します。
oBoolean = SITransformation.HasScalingOrientation(); |
Boolean。このベクトル変換に、有効なスケーリング方向がある場合は True、ない場合は 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 |