(other)
| 1094 | return Matrix3.from(this[0][0], this[1][0], this[2][0], this[0][1], this[1][1], this[2][1], this[0][2], this[1][2], this[2][2]); |
| 1095 | } |
| 1096 | eq(other) { |
| 1097 | return this[0][0] === other[0][0] && this[0][1] === other[0][1] && this[0][2] === other[0][2] && this[1][0] === other[1][0] && this[1][1] === other[1][1] && this[1][2] === other[1][2] && this[2][0] === other[2][0] && this[2][1] === other[2][1] && this[2][2] === other[2][2]; |
| 1098 | } |
| 1099 | isFinite() { |
| 1100 | return this.x.isFinite() && this.y.isFinite() && this.z.isFinite(); |
| 1101 | } |
nothing calls this directly
no outgoing calls
no test coverage detected