| 65 | } |
| 66 | |
| 67 | float stLength2(float x, float z) |
| 68 | { |
| 69 | float x_square = x * x; |
| 70 | float z_square = z * z; |
| 71 | |
| 72 | return stspeedy_sqrtf(x_square + z_square); |
| 73 | } |
| 74 | |
| 75 | void stMakeDirectionMtx(TPos3f *dirMtx, const TVec3f &vec, char axis) |
| 76 | { |
nothing calls this directly
no test coverage detected