Return the inverse matrix
| 242 | |
| 243 | // Return the inverse matrix |
| 244 | RP3D_FORCE_INLINE Matrix3x3 Matrix3x3::getInverse() const { |
| 245 | |
| 246 | return getInverse(getDeterminant()); |
| 247 | } |
| 248 | |
| 249 | // Return a skew-symmetric matrix using a given vector that can be used |
| 250 | // to compute cross product with another vector using matrix multiplication |
nothing calls this directly
no outgoing calls
no test coverage detected