| 362 | } |
| 363 | |
| 364 | void xMat3x3ScaleC(xMat3x3* m, F32 x, F32 y, F32 z) |
| 365 | { |
| 366 | xVec3Init((xVec3*)m, x, 0.0f, 0.0f); |
| 367 | xVec3Init(&m->up, 0.0f, y, 0.0f); |
| 368 | xVec3Init(&m->at, 0.0f, 0.0f, z); |
| 369 | m->flags = 0; |
| 370 | } |
| 371 | |
| 372 | void xMat3x3RMulRotY(xMat3x3* o, const xMat3x3* m, F32 t) |
| 373 | { |
no test coverage detected