| 140 | RLCPP_NODISCARD Matrix Multiply(float value) const { return ::MatrixMultiplyValue(*this, value); } |
| 141 | |
| 142 | Matrix operator*(const ::Matrix& matrix) { return ::MatrixMultiply(*this, matrix); } |
| 143 | |
| 144 | Matrix operator*(float value) { return ::MatrixMultiplyValue(*this, value); } |
| 145 |
nothing calls this directly
no outgoing calls
no test coverage detected