| 194 | } |
| 195 | |
| 196 | void xMat4x3MoveLocalRight(xMat4x3* m, F32 mag) |
| 197 | { |
| 198 | m->pos.x += m->right.x * mag; |
| 199 | m->pos.y += m->right.y * mag; |
| 200 | m->pos.z += m->right.z * mag; |
| 201 | } |
| 202 | |
| 203 | void xMat4x3MoveLocalUp(xMat4x3* m, F32 mag) |
| 204 | { |
no outgoing calls
no test coverage detected