| 2656 | } |
| 2657 | |
| 2658 | void WireSphereEarth(real azi, real alt, int zr, int *xp, int *yp, int *zp) |
| 2659 | { |
| 2660 | azi = Mod(-azi); |
| 2661 | CoorXform(&azi, &alt, rDegQuad - Lat); |
| 2662 | WireSphereLocal(azi + rDegQuad, -alt, zr, xp, yp, zp); |
| 2663 | } |
| 2664 | |
| 2665 | |
| 2666 | // Draw a chart sphere (like a chart wheel but in 3D) as done with the -XX |
no test coverage detected