Combines the transformations t1 and t2 then stores the result in this transformation.
SITransformation.Mul( SITransformation in_pTransfo1, SITransformation in_pTransfo2 ); |
SITransformation.Mul( in_pTransfo1, in_pTransfo2 ); |
| Parameter | Type | Description |
|---|---|---|
| in_pTransfo1 | SITransformation | Transformation operand |
| in_pTransfo2 | SITransformation | Transformation operand |
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 |