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