Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / BoundingBox Method
A collection of 3D points.
The min 3D point
The max 3D point

In This Topic
    BoundingBox Method
    In This Topic
    Returns the bounding box of a collection of 3D points.
    Syntax
    'Declaration
     
    Public Shared Sub BoundingBox( _
       ByVal pointList As IList(Of Point3D), _
       ByRef min As Point3D, _
       ByRef max As Point3D _
    ) 
    public static void BoundingBox( 
       IList<Point3D> pointList,
       out Point3D min,
       out Point3D max
    )

    Parameters

    pointList
    A collection of 3D points.
    min
    The min 3D point
    max
    The max 3D point
    See Also