| 114 | static Matrix Identity() { return ::MatrixIdentity(); } |
| 115 | |
| 116 | Matrix Add(const ::Matrix& right) { return ::MatrixAdd(*this, right); } |
| 117 | |
| 118 | Matrix operator+(const ::Matrix& matrix) { return ::MatrixAdd(*this, matrix); } |
| 119 |
nothing calls this directly
no outgoing calls
no test coverage detected