public XGraphicsPathItem(XGraphicsPathItemType type, params XPoint[] points)
 {
   this.type   = type;
   this.points = (XPoint[])points.Clone();
 }
 public XGraphicsPathItem(XGraphicsPathItemType type)
 {
   this.type   = type;
   this.points = null;
 }
 public XGraphicsPathItem(XGraphicsPathItemType type, params PointF[] points)
 {
   this.type   = type;
   this.points = XGraphics.MakeXPointArray(points);
 }
Esempio n. 4
0
 public XGraphicsPathItem(XGraphicsPathItemType type, params PointF[] points)
 {
     Type   = type;
     Points = XGraphics.MakeXPointArray(points, 0, points.Length);
 }
Esempio n. 5
0
 public XGraphicsPathItem(XGraphicsPathItemType type, params XPoint[] points)
 {
     Type   = type;
     Points = (XPoint[])points.Clone();
 }
Esempio n. 6
0
 public XGraphicsPathItem(XGraphicsPathItemType type)
 {
     Type   = type;
     Points = null;
 }
Esempio n. 7
0
 public XGraphicsPathItem(XGraphicsPathItemType type, params PointF[] points)
 {
     Type = type;
     Points = XGraphics.MakeXPointArray(points, 0, points.Length);
 }
Esempio n. 8
0
 public XGraphicsPathItem(XGraphicsPathItemType type)
 {
     Type = type;
     Points = null;
 }
 public XGraphicsPathItem(XGraphicsPathItemType type, params PointF[] points)
 {
     this.type   = type;
     this.points = XGraphics.MakeXPointArray(points);
 }
 public XGraphicsPathItem(XGraphicsPathItemType type)
 {
     this.type   = type;
     this.points = null;
 }