| 1637 | } |
| 1638 | |
| 1639 | WEAK F32 xVec3DistFast(const xVec3* a, const xVec3* b) |
| 1640 | { |
| 1641 | F32 dx = a->x - b->x; |
| 1642 | F32 dy = a->y - b->y; |
| 1643 | F32 dz = a->z - b->z; |
| 1644 | F32 dist2 = SQR(dx) + SQR(dy) + SQR(dz); |
| 1645 | F32 dist; |
| 1646 | |
| 1647 | xsqrtfast(dist, dist2); |
| 1648 | |
| 1649 | return dist; |
| 1650 | } |
| 1651 | |
| 1652 | WEAK void xMat3x3MulRotC(xMat3x3* o, xMat3x3* m, F32 _x, F32 _y, F32 _z, F32 t) |
| 1653 | { |
nothing calls this directly
no test coverage detected