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

Computes the Convex Hull of a set of 3D points.
Public Shared Sub ConvexHull( _ 
ByVal points As IList(Of Point3D), _ 
ByVal domainSize As Double, _ 
ByRef iVertices As Point3D(), _ 
ByRef iTriangles As IndexTriangle(), _ 
ByVal getFaces As Boolean, _ 
ByVal fixNormals As Boolean
)
This language is not supported or no code example is available.
public static void ConvexHull( 
IList<Point3D> points
double domainSize
out Point3D[] iVertices
out IndexTriangle[] iTriangles
bool getFaces
bool fixNormals 
)
This language is not supported or no code example is available.

Parameters

points
IList<Point3D>

The 3D point list

domainSize
double

The longest line connecting two points in the input set

iVertices
Point3D[]

The resulting 3D point vertices array.

iTriangles
IndexTriangle[]

The resulting IndexTriangle array.

getFaces
bool

<default>

fixNormals
bool

<default>

.NET Framework

Supported in: 4.8

In this article

Definition