Combines this transformation with the transformation t then stores the result in this transformation.
SITransformation.MulInPlace( SITransformation in_pTransfo ); |
SITransformation.MulInPlace( in_pTransfo ); |
Parameter | Type | Description |
---|---|---|
in_pTransfo | SITransformation | Transformation operand |
dim t1, t2 ' Create transformations. set t1 = XSIMath.CreateTransform set t2 = XSIMath.CreateTransform 'Do something on t1 and t2 t2.MulInPlace t1 |