| 329 | } |
| 330 | |
| 331 | void xMat3x3RotX(xMat3x3* m, F32 t) |
| 332 | { |
| 333 | F32 cos = icos(t); |
| 334 | F32 sin = isin(t); |
| 335 | |
| 336 | xVec3Copy(&m->right, &g_X3); |
| 337 | xVec3Init(&m->up, 0.0f, cos, sin); |
| 338 | xVec3Init(&m->at, 0.0f, -sin, cos); |
| 339 | m->flags = 0; |
| 340 | } |
| 341 | |
| 342 | void xMat3x3RotY(xMat3x3* m, F32 t) |
| 343 | { |
no test coverage detected