CCT.NUI.Core.Clustering.ClusterPrototype.FinishAddingPoints C# (CSharp) Method

FinishAddingPoints() public method

public FinishAddingPoints ( ) : void
return void
        public void FinishAddingPoints()
        {
            this.points = this.temporaryPoints;
            this.temporaryPoints = new List<Point>();
            this.CalculateCenter();
        }