MCPcopy Create free account
hub / github.com/DanielChappuis/reactphysics3d / getTranspose

Method getTranspose

include/reactphysics3d/mathematics/Matrix3x3.h:202–208  ·  view source on GitHub ↗

Return the transpose matrix

Source from the content-addressed store, hash-verified

200
201// Return the transpose matrix
202RP3D_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
211RP3D_FORCE_INLINE decimal Matrix3x3::getDeterminant() const {

Callers

nothing calls this directly

Calls 1

Matrix3x3Class · 0.70

Tested by

no test coverage detected