Exemplo n.º 1
0
 public ConvexPolygon(params Point[] points)
 {
     this.points = GeometryOperations.BuildConvexHull(points.ToList());
 }
Exemplo n.º 2
0
 public ConvexPolygon(List <Point> points)
 {
     this.points = GeometryOperations.BuildConvexHull(points);
 }