| 1728 | } |
| 1729 | |
| 1730 | void xVec3Sub(xVec3* o, const xVec3* a, const xVec3* b) |
| 1731 | { |
| 1732 | o->x = a->x - b->x; |
| 1733 | o->y = a->y - b->y; |
| 1734 | o->z = a->z - b->z; |
| 1735 | } |
| 1736 | |
| 1737 | void xVec3Inv(xVec3* o, const xVec3* v) |
| 1738 | { |
no outgoing calls
no test coverage detected