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

Method getColumn

include/reactphysics3d/mathematics/Matrix3x3.h:190–193  ·  view source on GitHub ↗

Return a column

Source from the content-addressed store, hash-verified

188
189// Return a column
190RP3D_FORCE_INLINE Vector3 Matrix3x3::getColumn(int i) const {
191 assert(i>= 0 && i<3);
192 return Vector3(mRows[0][i], mRows[1][i], mRows[2][i]);
193}
194
195// Return a row
196RP3D_FORCE_INLINE Vector3 Matrix3x3::getRow(int i) const {

Callers

nothing calls this directly

Calls 1

Vector3Class · 0.70

Tested by

no test coverage detected