()
| 1445 | return new Matrix4(matrix4mul(this.ptr, other.ptr)); |
| 1446 | } |
| 1447 | toArray() { |
| 1448 | return [ |
| 1449 | this[0], |
| 1450 | this[1], |
| 1451 | this[2], |
| 1452 | this[3], |
| 1453 | ]; |
| 1454 | } |
| 1455 | toFloat32Array() { |
| 1456 | return new Float32Array(this.#internal); |
| 1457 | } |
nothing calls this directly
no outgoing calls
no test coverage detected