この変換のスケーリングを、SIVector3 から値を取得して設定します。
SITransformation.SetScaling( SIVector3 in_pScale ); |
SITransformation.SetScaling( in_pScale ); |
パラメータ | タイプ | 説明 |
---|---|---|
in_pScale | SIVector3 | X、Y、Z のスケーリング値を含む3D ベクトル |
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 |