Returns the identity transformation matrix.
1 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
0 |
1 |
Rhino.XformIdentity ()
None
Array |
The 4x4 transformation matrix. |
PrintMatrix Rhino.XformIdentity
Sub PrintMatrix(arrXform)
For i = 0 To UBound(arrXform, 1)
str = ""
For j = 0 To UBound(arrXform, 2)
str = str & "[" & CStr(arrXform(i,j)) & "] "
Next
Rhino.Print str
Next
End Sub