Return the 3x3 zero matrix
| 237 | |
| 238 | // Return the 3x3 zero matrix |
| 239 | RP3D_FORCE_INLINE Matrix3x3 Matrix3x3::zero() { |
| 240 | return Matrix3x3(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); |
| 241 | } |
| 242 | |
| 243 | // Return the inverse matrix |
| 244 | RP3D_FORCE_INLINE Matrix3x3 Matrix3x3::getInverse() const { |