MulByTransformationInPlace (SIVector3)
Description
Right-multiplies this vector by the transformation t in place: this = this . t
Scripting Syntax
SIVector3.MulByTransformationInPlace( t )
C# Syntax
SIVector3.MulByTransformationInPlace( SITransformation in_pTransformation );Parameters
|
Parameter |
Type |
Description |
|
t |
Operand transformation |
Examples
VBScript Example
dim v1, rotAngles, t1 ' Create 3D vectors. set v1 = XSIMath.CreateVector3 set rotAngles = XSIMath.CreateVector3 ' Create Transformation. set t1 = XSIMath.CreateTransform v1.Set 1.0, 0.0, 0.0 rotAngles.Set 0.0, 0.0, 0.7853981633974483 t1.SetRotationFromXYZAngles rotAngles v1.MulByTransformationInPlace t1
See Also
|
|
Autodesk Softimage v7.5