| 1689 | // retrograde, or potentially "S" for stationary if the velocity is near 0. |
| 1690 | |
| 1691 | char ChRet(real dir) |
| 1692 | { |
| 1693 | if (RAbs(dir) < us.rStation) |
| 1694 | return 'S'; |
| 1695 | if (dir < 0.0) |
| 1696 | return chRet; |
| 1697 | return ' '; |
| 1698 | } |
| 1699 | |
| 1700 | |
| 1701 | // Given a zodiac position, return a string containing it as it's formatted |
no outgoing calls
no test coverage detected