Ejemplo n.º 1
0
 public void AddArc(float x, float y, float width, float height, float startAngle, float sweepAngle)
 {
     Changed();
     GdiPath.AddArc(x, y, width, height, startAngle, sweepAngle);
 }
Ejemplo n.º 2
0
 public void AddArc(RectangleF rectF, float startAngle, float sweepAngle)
 {
     Changed();
     GdiPath.AddArc(rectF, startAngle, sweepAngle);
 }