BEPUutilities2.ConvexHullHelper.GetConvexHull C# (CSharp) Метод

GetConvexHull() публичный статический Метод

Identifies the points on the surface of hull.
public static GetConvexHull ( IList points, IList outputSurfacePoints ) : void
points IList List of points in the set.
outputSurfacePoints IList Unique points on the surface of the convex hull.
Результат void
        public static void GetConvexHull(IList<Vector3> points, IList<Vector3> outputSurfacePoints)
        {
            var rawPoints = new QuickList<Vector3>(BufferPools<Vector3>.Locking, BufferPool.GetPoolIndex(points.Count));
            rawPoints.AddRange(points);
            GetConvexHull(ref rawPoints, outputSurfacePoints);
            rawPoints.Dispose();
        }

Same methods

ConvexHullHelper::GetConvexHull ( IList points, IList outputTriangleIndices ) : void
ConvexHullHelper::GetConvexHull ( IList points, IList outputTriangleIndices, IList outputSurfacePoints ) : void
ConvexHullHelper::GetConvexHull ( QuickList &points, IList outputSurfacePoints ) : void
ConvexHullHelper::GetConvexHull ( QuickList &points, QuickList &outputTriangleIndices ) : void
ConvexHullHelper::GetConvexHull ( QuickList &points, QuickList &outputTriangleIndices, IList outputSurfacePoints ) : void