UtilityEx.Triangulate (IList<Point3D>, IList<IList<Point3D>>, IList<Point3D>, IList<Segment3D>) Method

Triangulates a set of contours/points.
Public Shared Function Triangulate( _ 
ByVal outerLoop As IList(Of Point3D), _ 
ByVal innerLoops As IList(Of IList(Of Point3D)), _ 
ByVal points As IList(Of Point3D), _ 
ByVal segments As IList(Of Segment3D) _ 
) As Mesh
This language is not supported or no code example is available.
public static Mesh Triangulate( 
IList<Point3D> outerLoop
IList<IList<Point3D>> innerLoops
IList<Point3D> points
IList<Segment3D> segments 
)
This language is not supported or no code example is available.

Parameters

outerLoop
IList<Point3D>

Outer contour

innerLoops
IList<IList<Point3D>>

A list of inner contours (holes), can be null/Nothing.

points
IList<Point3D>

The list of Steiner points, can be null/Nothing.

segments
IList<Segment3D>

The internal constraint segments, can be null/Nothing.

Return Value

Mesh

The resulting Mesh, null/Nothing in case of failure.

.NET Framework

Supported in: 4.8

In this article

Definition