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

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

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

Same methods

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