Right-multiplies this matrix by the matrix m and stores the result into this matrix: this = this . m
SIMatrix3.MulInPlace( m ); |
Parameter | Type | Description |
---|---|---|
m | SIMatrix3 | Matrix operand |
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 |