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