| 351 | } |
| 352 | |
| 353 | void xMat3x3RotZ(xMat3x3* m, F32 t) |
| 354 | { |
| 355 | F32 cos = icos(t); |
| 356 | F32 sin = isin(t); |
| 357 | |
| 358 | xVec3Init(&m->right, cos, sin, 0.0f); |
| 359 | xVec3Init(&m->up, -sin, cos, 0.0f); |
| 360 | xVec3Copy(&m->at, &g_Z3); |
| 361 | m->flags = 0; |
| 362 | } |
| 363 | |
| 364 | void xMat3x3ScaleC(xMat3x3* m, F32 x, F32 y, F32 z) |
| 365 | { |
no test coverage detected