Return the transpose matrix
| 200 | |
| 201 | // Return the transpose matrix |
| 202 | RP3D_FORCE_INLINE Matrix3x3 Matrix3x3::getTranspose() const { |
| 203 | |
| 204 | // Return the transpose matrix |
| 205 | return Matrix3x3(mRows[0][0], mRows[1][0], mRows[2][0], |
| 206 | mRows[0][1], mRows[1][1], mRows[2][1], |
| 207 | mRows[0][2], mRows[1][2], mRows[2][2]); |
| 208 | } |
| 209 | |
| 210 | // Return the determinant of the matrix |
| 211 | RP3D_FORCE_INLINE decimal Matrix3x3::getDeterminant() const { |