* Create an identity 4x4 matrix
()
| 511 | * Create an identity 4x4 matrix |
| 512 | */ |
| 513 | static createIdentityMatrix() { |
| 514 | return [ |
| 515 | [1, 0, 0, 0], |
| 516 | [0, 1, 0, 0], |
| 517 | [0, 0, 1, 0], |
| 518 | [0, 0, 0, 1] |
| 519 | ]; |
| 520 | } |
| 521 | |
| 522 | /** |
| 523 | * Convert pose array to formatted string for display |