この変換のスケーリング値を、3D ベクトルで戻します。
SITransformation.GetScaling( io_pScale ); |
パラメータ | タイプ | 詳細 |
---|---|---|
io_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 |