예제 #1
0
 public static void Ellipse(this IGeometryFigures _, double x, double y, double width, double height)
 {
     _.Ellipse(new Rectangle(x, y, width, height));
 }
예제 #2
0
 public void Ellipse(Rectangle rectangle)
 {
     _figures.Ellipse(rectangle);
 }