この変換のローカル空間に定義されるスケーリングを適用します。
SITransformation.AddLocalScaling( SIVector3 in_pScaling ); |
SITransformation.AddLocalScaling( in_pScaling ); |
パラメータ | タイプ | 説明 |
---|---|---|
in_pScaling | SIVector3 | 3D スケーリングベクトル |
dim t1, vScaling ' Create transformation. set t1 = XSIMath.CreateTransform ' Create 3D vectors. set vScaling = XSIMath.CreateVector3 'Do something with t1 'Then add a scaling at the local level vScaling.Set 1.0, 2.0, 3.0 t1.AddLocalScaling vScaling |