| 498 | // minute expressed as hundredths, e.g. 10.5 degrees -> 10.30 |
| 499 | |
| 500 | real DegToDec(real d) |
| 501 | { |
| 502 | return RSgn(d)*(RFloor(RAbs(d))+RFract(RAbs(d))*60.0/100.0); |
| 503 | } |
| 504 | |
| 505 | |
| 506 | // Return the shortest distance between two degrees in the zodiac. This is |