| 227 | } |
| 228 | |
| 229 | static int point_distance(df::coord speed) |
| 230 | { |
| 231 | return std::max(abs(speed.x), std::max(abs(speed.y), abs(speed.z))); |
| 232 | } |
| 233 | |
| 234 | inline void normalize(float &x, float &y, float &z) |
| 235 | { |
no outgoing calls
no test coverage detected