| 156 | } |
| 157 | |
| 158 | void xMat3x3Normalize(xMat3x3* o, const xMat3x3* m) |
| 159 | { |
| 160 | xVec3Normalize(&o->right, &m->right); |
| 161 | xVec3Normalize(&o->up, &m->up); |
| 162 | xVec3Normalize(&o->at, &m->at); |
| 163 | } |
| 164 | |
| 165 | void xMat3x3GetEuler(const xMat3x3* m, xVec3* a) |
| 166 | { |
no test coverage detected