| 509 | |
| 510 | |
| 511 | inline 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 | |
| 520 | inline void MatrixF::getRow(S32 col, Point3F *cptr) const |
| 521 | { |
no outgoing calls
no test coverage detected