| 414 | } |
| 415 | |
| 416 | void KartMat::DevMatrixByVector(VecPtr out, VecPtr base, Mtx m) |
| 417 | { |
| 418 | f32 x = m[0][0] * base->x + m[1][0] * base->y + m[2][0] * base->z; |
| 419 | f32 y = m[0][1] * base->x + m[1][1] * base->y + m[2][1] * base->z; |
| 420 | f32 z = m[0][2] * base->x + m[1][2] * base->y + m[2][2] * base->z; |
| 421 | |
| 422 | out->x = x; |
| 423 | out->y = y; |
| 424 | out->z = z; |
| 425 | } |
| 426 | |
| 427 | void KartMat::DevMatrixByVector2(JGeometry::TVec3f *out, JGeometry::TVec3f *base, Mtx m) |
| 428 | { |
no outgoing calls
no test coverage detected