Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / ConvexHull Method / ConvexHull(IList<Point3D>,Double,Boolean) Method
The 3D point array
The maximum distance between two points in the input set, zero for automatic estimation.

In This Topic
    ConvexHull(IList<Point3D>,Double,Boolean) Method
    In This Topic
    Computes the Convex Hull of a set of 3D points.
    Syntax
    'Declaration
     
    Public Overloads Shared Function ConvexHull( _
       ByVal points As IList(Of Point3D), _
       Optional ByVal domainSize As Double, _
       Optional ByVal fixNormal As Boolean _
    ) As Mesh
    public static Mesh ConvexHull( 
       IList<Point3D> points,
       double domainSize,
       bool fixNormal
    )

    Parameters

    points
    The 3D point array
    domainSize
    The maximum distance between two points in the input set, zero for automatic estimation.
    fixNormal

    Return Value

    The resulting Mesh object.
    See Also