Method to set all the values in the matrix
| 165 | |
| 166 | // Method to set all the values in the matrix |
| 167 | RP3D_FORCE_INLINE void Matrix2x2::setAllValues(decimal a1, decimal a2, |
| 168 | decimal b1, decimal b2) { |
| 169 | mRows[0][0] = a1; mRows[0][1] = a2; |
| 170 | mRows[1][0] = b1; mRows[1][1] = b2; |
| 171 | } |
| 172 | |
| 173 | // Set the matrix to zero |
| 174 | RP3D_FORCE_INLINE void Matrix2x2::setToZero() { |
nothing calls this directly
no outgoing calls
no test coverage detected