| 611 | } |
| 612 | |
| 613 | Matrix* TriMatrixTranslate( Matrix* out, const Matrix* m, const Vector3* v ) |
| 614 | { |
| 615 | *out = *m; |
| 616 | out->_41 += v->x; |
| 617 | out->_42 += v->y; |
| 618 | out->_43 += v->z; |
| 619 | return out; |
| 620 | } |
| 621 | |
| 622 | Matrix* TriMatrixTranslate( Matrix* out, const Vector3* v, const Matrix* m ) |
| 623 | { |
no outgoing calls
no test coverage detected