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;
        }