| 208 | } |
| 209 | |
| 210 | void xMat4x3MoveLocalAt(xMat4x3* m, F32 mag) |
| 211 | { |
| 212 | m->pos.x += m->at.x * mag; |
| 213 | m->pos.y += m->at.y * mag; |
| 214 | m->pos.z += m->at.z * mag; |
| 215 | } |
| 216 | |
| 217 | F32 xMat3x3LookVec(xMat3x3* m, const xVec3* at) |
| 218 | { |
no outgoing calls
no test coverage detected