BEPUutilities2.ConvexHullHelper.RemoveRedundantPoints C# (CSharp) 메소드

RemoveRedundantPoints() 공개 정적인 메소드

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.
리턴 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