CCT.NUI.Core.Clustering.Cluster.Cluster C# (CSharp) Method

Cluster() public method

public Cluster ( System.Point center, IList points, Volume volume ) : System
center System.Point
points IList
volume Volume
return System
        public Cluster(Point center, IList<Point> points, Volume volume)
        {
            this.center = center;
            this.points = points;
            this.volume = volume;
        }

Same methods

Cluster::Cluster ( IList points ) : System
Cluster::Cluster ( System.Point center, IList points ) : System
Cluster