Example #1
0
 public void AddCurve(PointF[] points, float tension)
 {
     Changed();
     GdiPath.AddCurve(points, tension);
 }
Example #2
0
 public void AddCurve(PointF[] points, int offset, int numberOfSegments, float tension)
 {
     Changed();
     GdiPath.AddCurve(points, offset, numberOfSegments, tension);
 }
Example #3
0
 public void AddCurve(PointF[] points)
 {
     Changed();
     GdiPath.AddCurve(points);
 }