Exemple #1
0
 public PointList(PointList pl)
 {
     Point[] tmp = new Point[pl.Length];
     pl.pt.CopyTo(tmp);
     pt = new List <Point>(tmp);
 }
Exemple #2
0
 public PointListExt(PointList pl) : base(pl)
 {
 }