()
| 1384 | } |
| 1385 | } |
| 1386 | clone() { |
| 1387 | return new Matrix4(this.x, this.y, this.z, this.w); |
| 1388 | } |
| 1389 | transpose() { |
| 1390 | return Matrix4.from(this[0][0], this[1][0], this[2][0], this[3][0], this[0][1], this[1][1], this[2][1], this[3][1], this[0][2], this[1][2], this[2][2], this[3][2], this[0][3], this[1][3], this[2][3], this[3][3]); |
| 1391 | } |
nothing calls this directly
no outgoing calls
no test coverage detected