UtilityEx.ConvexHull (IList<Point3D>, Double, Boolean, Boolean) Method

Computes the Convex Hull of a set of 3D points.
Public Shared Function ConvexHull( _ 
ByVal points As IList(Of Point3D), _ 
Optional ByVal domainSize As Double = 0, _ 
Optional ByVal fixNormal As Boolean = true, _ 
Optional ByVal getFaces As Boolean = true _ 
) As Mesh
This language is not supported or no code example is available.
public static Mesh ConvexHull( 
IList<Point3D> points
double domainSize = 0, 
bool fixNormal = true, 
bool getFaces = true 
)
This language is not supported or no code example is available.

Parameters

points
IList<Point3D>

The 3D point array

domainSize
double

The maximum distance between two points in the input set, zero for automatic estimation.

fixNormal
bool

getFaces
bool

Return Value

Mesh

The resulting Mesh object.

.NET Framework

Supported in: 4.8

In this article

Definition