CCT.NUI.Core.Clustering.KMeansClusterFactory.AreEnoughPointsForClustering C# (CSharp) Méthode

AreEnoughPointsForClustering() private méthode

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