BEPUutilities2.ConvexHullHelper.RemoveRedundantPoints C# (CSharp) Method

RemoveRedundantPoints() public static method

Removes redundant points. Two points are redundant if they occupy the same hash grid cell of size 0.001.
public static RemoveRedundantPoints ( IList points ) : void
points IList List of points to prune.
return void
        public static void RemoveRedundantPoints(IList<Vector3> points)
        {
            RemoveRedundantPoints(points, .001);
        }

Same methods

ConvexHullHelper::RemoveRedundantPoints ( IList points, double cellSize ) : void
ConvexHullHelper::RemoveRedundantPoints ( QuickList &points ) : void
ConvexHullHelper::RemoveRedundantPoints ( QuickList &points, double cellSize ) : void