Exemplo n.º 1
0
 public Shape(Point center, Volume volume, Contour contour, ConvexHull convexHull, IList<Point> points)
 {
     this.center = center;
     this.volume = volume;
     this.contour = contour;
     this.convexHull = convexHull;
     this.points = points;
 }
Exemplo n.º 2
0
 public Cluster(Point center, IList<Point> points, Volume volume)
 {
     this.center = center;
     this.points = points;
     this.volume = volume;
 }
Exemplo n.º 3
0
 public Cluster(Point center, IList<Point> points)
 {
     this.center = center;
     this.points = points;
     this.volume = new Volume(points);
 }