(other)
| 856 | return Matrix2.from(this[0][0], this[1][0], this[0][1], this[1][1]); |
| 857 | } |
| 858 | eq(other) { |
| 859 | return this[0][0] === other[0][0] && this[0][1] === other[0][1] && this[1][0] === other[1][0] && this[1][1] === other[1][1]; |
| 860 | } |
| 861 | isFinite() { |
| 862 | return this.x.isFinite() && this.y.isFinite(); |
| 863 | } |
nothing calls this directly
no outgoing calls
no test coverage detected