Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / Triangulate Method / Triangulate(Polygon,ConstraintOptions,QualityOptions,ISmoother,Int32) Method
The contours, point and segments to be triangulated.
The desired constraints
The desired quality
The smoother type
The number of smoothing passes

In This Topic
    Triangulate(Polygon,ConstraintOptions,QualityOptions,ISmoother,Int32) Method
    In This Topic
    Triangulates the specified geometry.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Triangulate( _
       ByVal inputGeometry As Polygon, _
       ByVal co As ConstraintOptions, _
       ByVal qo As QualityOptions, _
       ByVal smoother As ISmoother, _
       ByVal smoothingPasses As Integer _
    ) As Mesh
    public static Mesh Triangulate( 
       Polygon inputGeometry,
       ConstraintOptions co,
       QualityOptions qo,
       ISmoother smoother,
       int smoothingPasses
    )

    Parameters

    inputGeometry
    The contours, point and segments to be triangulated.
    co
    The desired constraints
    qo
    The desired quality
    smoother
    The smoother type
    smoothingPasses
    The number of smoothing passes

    Return Value

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