| 629 | } |
| 630 | |
| 631 | Matrix* TriMatrixRotate( Matrix* out, const Matrix* m, const Quaternion* q ) |
| 632 | { |
| 633 | //we might be able to use a niftier way to do this later |
| 634 | Matrix tmpResult = RotationMatrix( *q ); |
| 635 | *out = *m * tmpResult; |
| 636 | return out; |
| 637 | } |
| 638 | |
| 639 | Matrix* TriMatrixRotate( Matrix* out, const Quaternion* q, const Matrix* m ) |
| 640 | { |
no outgoing calls
no test coverage detected