SITransformation.Mul

Description

Combines the transformations t1 and t2 then stores the result in this transformation.

Scripting Syntax

SITransformation.Mul( in_pTransfo1, in_pTransfo2 );

Parameters

Parameter Type Description
in_pTransfo1 SITransformation Transformation operand
in_pTransfo2 SITransformation Transformation operand

Examples

VBScript Example

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

See Also

SITransformation.MulInPlace SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion