SITransformation.GetScaling

説明

この変換のスケーリング値を、3D ベクトルで戻します。

C#構文

SITransformation.GetScaling( SIVector3 io_pScale );

スクリプト構文

SITransformation.GetScaling( io_pScale );

パラメータ

パラメータ タイプ 説明
io_pScale SIVector3 X、Y、Z のスケーリング値からなる 3D ベクトル

VBScript の例

dim t1, inScale, outScale

' Create transformation.

set t1 = XSIMath.CreateTransform

' Create 3D vectors.

set inScale = XSIMath.CreateVector3(1.0, 2.0, 3.0)

set outScale = XSIMath.CreateVector3

t1.SetScaling inScale

t1.GetScaling outScale

関連項目

SITransformation.SetScaling SITransformation.SclX SITransformation.SclY SITransformation.SclZ SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion