CCT.NUI.Core.Clustering.KMeansClusterFactory.AreEnoughPointsForClustering C# (CSharp) Method

AreEnoughPointsForClustering() private method

private AreEnoughPointsForClustering ( int count ) : bool
count int
return bool
        private bool AreEnoughPointsForClustering(int count)
        {
            return count >= settings.MinimalPointsForClustering;
        }