(other)
| 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 | } |
| 1392 | eq(other) { |
| 1393 | return this[0][0] === other[0][0] && this[0][1] === other[0][1] && this[0][2] === other[0][2] && this[0][3] === other[0][3] && this[1][0] === other[1][0] && this[1][1] === other[1][1] && this[1][2] === other[1][2] && this[1][3] === other[1][3] && this[2][0] === other[2][0] && this[2][1] === other[2][1] && this[2][2] === other[2][2] && this[2][3] === other[2][3] && this[3][0] === other[3][0] && this[3][1] === other[3][1] && this[3][2] === other[3][2] && this[3][3] === other[3][3]; |
| 1394 | } |
| 1395 | isFinite() { |
| 1396 | return this.x.isFinite() && this.y.isFinite() && this.z.isFinite() && this.w.isFinite(); |
| 1397 | } |
nothing calls this directly
no outgoing calls
no test coverage detected