| 120 | Matrix Subtract(const ::Matrix& right) { return ::MatrixSubtract(*this, right); } |
| 121 | |
| 122 | Matrix operator-(const ::Matrix& matrix) { return ::MatrixSubtract(*this, matrix); } |
| 123 | |
| 124 | static Matrix Translate(float x, float y, float z) { return ::MatrixTranslate(x, y, z); } |
| 125 |
nothing calls this directly
no outgoing calls
no test coverage detected