Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / ConvexHull Method / ConvexHull(IList<Point3D>,Double,Point3D[],IndexTriangle[],Boolean) Method
The 3D point list
The longest line connecting two points in the input set
The resulting 3D point vertices array.
The resulting IndexTriangle array.

In This Topic
    ConvexHull(IList<Point3D>,Double,Point3D[],IndexTriangle[],Boolean) Method
    In This Topic
    Computes the Convex Hull of a set of 3D points.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub ConvexHull( _
       ByVal points As IList(Of Point3D), _
       ByVal domainSize As Double, _
       ByRef iVertices As Point3D(), _
       ByRef iTriangles As IndexTriangle(), _
       Optional ByVal fixNormals As Boolean _
    ) 
    public static void ConvexHull( 
       IList<Point3D> points,
       double domainSize,
       out Point3D[] iVertices,
       out IndexTriangle[] iTriangles,
       bool fixNormals
    )

    Parameters

    points
    The 3D point list
    domainSize
    The longest line connecting two points in the input set
    iVertices
    The resulting 3D point vertices array.
    iTriangles
    The resulting IndexTriangle array.
    fixNormals
    See Also