()
| 1088 | } |
| 1089 | } |
| 1090 | clone() { |
| 1091 | return new Matrix3(this.x, this.y, this.z); |
| 1092 | } |
| 1093 | transpose() { |
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected