public void DrawPlanets(Graphics g)
 {
     for (int i = 0; i < _controller.GetPlanetarySystem().Size(); i++)
     {
         DrawPlanet(g, i);
     }
 }