| 112 | RLCPP_NODISCARD Matrix Invert() const { return ::MatrixInvert(*this); } |
| 113 | |
| 114 | static Matrix Identity() { return ::MatrixIdentity(); } |
| 115 | |
| 116 | Matrix Add(const ::Matrix& right) { return ::MatrixAdd(*this, right); } |
| 117 |
nothing calls this directly
no outgoing calls
no test coverage detected