変換 t1 と t2 を合成し、結果をこの変換に格納します。
SITransformation.Mul( SITransformation in_pTransfo1, SITransformation in_pTransfo2 ); |
SITransformation.Mul( in_pTransfo1, in_pTransfo2 ); |
パラメータ | タイプ | 説明 |
---|---|---|
in_pTransfo1 | SITransformation | 変換オペランド |
in_pTransfo2 | SITransformation | 変換オペランド |
dim t1, t2, t3 ' Create transformations. set t1 = XSIMath.CreateTransform set t2 = XSIMath.CreateTransform set t3 = XSIMath.CreateTransform 'Do something on t1 and t2 t3.Mul t1, t2 |