示例#1
0
 public void AddLine(int x1, int y1, int x2, int y2)
 {
     Changed();
     GdiPath.AddLine(x1, y1, x2, y2);
 }
示例#2
0
 public void AddLine(float x1, float y1, float x2, float y2)
 {
     Changed();
     GdiPath.AddLine(x1, y1, x2, y2);
 }
示例#3
0
 public void AddLine(PointF pt1, PointF pt2)
 {
     Changed();
     GdiPath.AddLine(pt1, pt2);
 }