* Transposes provided matrix */
| 108 | * Transposes provided matrix |
| 109 | */ |
| 110 | RLCPP_NODISCARD Matrix Transpose() const { return ::MatrixTranspose(*this); } |
| 111 | |
| 112 | RLCPP_NODISCARD Matrix Invert() const { return ::MatrixInvert(*this); } |
| 113 |
nothing calls this directly
no outgoing calls
no test coverage detected