CCT.NUI.Core.Clustering.KMeansClusterFactory.AreEnoughPointsForClustering C# (CSharp) 메소드

AreEnoughPointsForClustering() 개인적인 메소드

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