()
| 880 | return this[0][0] + this[1][1]; |
| 881 | } |
| 882 | determinant() { |
| 883 | return matrix2determinant(this.ptr); |
| 884 | } |
| 885 | invert() { |
| 886 | const ptr = matrix2invert(this.ptr); |
| 887 | if (ptr !== 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected