Returns the matrix representation values of this rotation inside the matrix m.
SIRotation.GetMatrix3( SIMatrix3 io_pMatrix ); |
SIRotation.GetMatrix3( m ); |
Parameter | Type | Description |
---|---|---|
m | SIMatrix3 | matrix operand |
dim r1, m1 ' Create rotation. set r1 = XSIMath.CreateRotation ' Create 3x3 matrix. set m1 = XSIMath.CreateMatrix3 'do something on the rotation r1.GetMatrix3 m1 |