MulInPlace (SIMatrix3)
Description
Right-multiplies this matrix by the matrix m and stores the result into this matrix: this = this . m
Scripting Syntax
SIMatrix3.MulInPlace( m )
C# Syntax
SIMatrix3.MulInPlace( SIMatrix3 in_pMatrix );Parameters
|
Parameter |
Type |
Description |
|
m |
Matrix operand |
Examples
VBScript Example
dim m1, m2 ' Create 3x3 matrices. set m1 = XSIMath.CreateMatrix3(1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0) set m2 = XSIMath.CreateMatrix3(4.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 2.0) m1.MulInPlace m2
See Also
|
|
Autodesk Softimage v7.5