* Draws the whole globe, part by part. */
| 1064 | * Draws the whole globe, part by part. |
| 1065 | */ |
| 1066 | void Globe::draw() |
| 1067 | { |
| 1068 | if (_redraw) |
| 1069 | { |
| 1070 | cachePolygons(); |
| 1071 | } |
| 1072 | Surface::draw(); |
| 1073 | drawOcean(); |
| 1074 | drawLand(); |
| 1075 | drawRadars(); |
| 1076 | drawShadow(); |
| 1077 | drawMarkers(); |
| 1078 | drawDetail(); |
| 1079 | drawFlights(); |
| 1080 | } |
| 1081 | |
| 1082 | |
| 1083 | /** |
no outgoing calls
no test coverage detected