BEPUutilities.ConvexHullHelper.GetConvexHull C# (CSharp) Method

GetConvexHull() public static method

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.
return void
        public static void GetConvexHull(IList<Vector3> points, IList<Vector3> outputSurfacePoints)
        {
            var rawPoints = CommonResources.GetVectorList();
            rawPoints.AddRange(points);
            GetConvexHull(rawPoints, outputSurfacePoints);
            CommonResources.GiveBack(rawPoints);
        }

Same methods

ConvexHullHelper::GetConvexHull ( IList points, IList indices ) : void
ConvexHullHelper::GetConvexHull ( IList points, IList outputIndices, IList outputSurfacePoints ) : void
ConvexHullHelper::GetConvexHull ( RawList points, IList outputSurfacePoints ) : void
ConvexHullHelper::GetConvexHull ( RawList points, RawList triangleIndices ) : void
ConvexHullHelper::GetConvexHull ( RawList points, RawList outputIndices, IList outputSurfacePoints ) : void