| 193 | void xMat3x3SMul(xMat3x3*, const xMat3x3*, F32); |
| 194 | |
| 195 | inline void xRotCopy(xRot* o, const xRot* r) |
| 196 | { |
| 197 | o->axis.x = r->axis.x; |
| 198 | o->axis.y = r->axis.y; |
| 199 | o->axis.z = r->axis.z; |
| 200 | o->angle = r->angle; |
| 201 | } |
| 202 | |
| 203 | static inline void xMat3x3RMulVec(xVec3* o, const xMat3x3* m, const xVec3* v) |
| 204 | { |
no outgoing calls
no test coverage detected