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

ReducePoints() private method

private ReducePoints ( IList points ) : IList
points IList
return IList
        private IList<Point> ReducePoints(IList<Point> points)
        {
            return points.Where(p => p.X % this.settings.PointModulo == 0 && p.Y % this.settings.PointModulo == 0).ToList();
        }