Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / Triangulate Method / Triangulate(IList<Point3D>,IList<IList<Point3D>>,IList<Point3D>,IList<Point3D>) Method
Outer contour
A list of inner contours (holes), can be null/Nothing.
The list of Steiner points, can be null/Nothing.
The internal constraint segments, can be null/Nothing.

In This Topic
    Triangulate(IList<Point3D>,IList<IList<Point3D>>,IList<Point3D>,IList<Point3D>) Method
    In This Topic
    Triangulates a set of contours/points.
    Syntax
    'Declaration
     
    Public Overloads 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 Point3D) _
    ) As Mesh

    Parameters

    outerLoop
    Outer contour
    innerLoops
    A list of inner contours (holes), can be null/Nothing.
    points
    The list of Steiner points, can be null/Nothing.
    segments
    The internal constraint segments, can be null/Nothing.

    Return Value

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