public void ModifyFigure(IDrawable figure, IRenderer renderer)
 {
     if (figure != null)
     {
         figure.Modify(renderer);
     }
 }