| 28 | ----------------------------------------------------------------------------*/ |
| 29 | |
| 30 | FLOAT32 DistanceBetween(FPOINT A, FPOINT B) { |
| 31 | double xd = XDelta(A, B); |
| 32 | double yd = YDelta(A, B); |
| 33 | return sqrt(static_cast<double>(xd * xd + yd * yd)); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Return the angle from Point1 to Point2 normalized to |
no test coverage detected