()
| 1150 | return Matrix4.from(this[0][0], this[0][1], this[0][2], 0, this[1][0], this[1][1], this[1][2], 0, this[2][0], this[2][1], this[2][2], 0, 0, 0, 0, 1); |
| 1151 | } |
| 1152 | toArray() { |
| 1153 | return [ |
| 1154 | this[0], |
| 1155 | this[1], |
| 1156 | this[2] |
| 1157 | ]; |
| 1158 | } |
| 1159 | toFloat32Array() { |
| 1160 | return new Float32Array(this.#internal); |
| 1161 | } |
nothing calls this directly
no outgoing calls
no test coverage detected