| 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 | |
| 126 | static Matrix Rotate(Vector3 axis, float angle) { return ::MatrixRotate(axis, angle); } |
| 127 |
nothing calls this directly
no outgoing calls
no test coverage detected