MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / getRow

Method getRow

Engine/source/math/mMatrix.h:511–518  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

509
510
511inline void MatrixF::getRow(S32 col, Point4F *cptr) const
512{
513 col *= 4;
514 cptr->x = m[col++];
515 cptr->y = m[col++];
516 cptr->z = m[col++];
517 cptr->w = m[col];
518}
519
520inline void MatrixF::getRow(S32 col, Point3F *cptr) const
521{

Callers 11

transposeTimesMethod · 0.45
appy_transformFunction · 0.45
btCompareTransformsEqualFunction · 0.45
appy_transformMethod · 0.45
btCompareTransformsEqualFunction · 0.45
renderObjectMethod · 0.45
copyToVBMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected