Exemplo n.º 1
0
 void DrawPatchIcons(Orbit o)
 {
     while (o != null)
     {
         if (o.ContainsUT(DesiredTime))
         {
             DrawIcon(o.getPositionAtUT(DesiredTime), ShipIcon);
         }
         o = o.nextPatch;
     }
 }