| 507 | // normally their difference, but we have to check if near the Aries point. |
| 508 | |
| 509 | real MinDistance(real deg1, real deg2) |
| 510 | { |
| 511 | real r; |
| 512 | |
| 513 | r = RAbs(deg1-deg2); |
| 514 | return r <= rDegHalf ? r : rDegMax - r; |
| 515 | } |
| 516 | |
| 517 | |
| 518 | // This is just like the above routine, except the min distance value returned |
no outgoing calls
no test coverage detected