Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / ComputeBoundingRect Method
The set of points
The minimum point of the bounding box
The maximum point of the bounding box

In This Topic
    ComputeBoundingRect Method
    In This Topic
    Computes the bounding box of the given array of points.
    Syntax
    'Declaration
     
    Public Shared Sub ComputeBoundingRect( _
       ByVal points As IList(Of Point2D), _
       ByRef boxMin As Point2D, _
       ByRef boxMax As Point2D _
    ) 
    public static void ComputeBoundingRect( 
       IList<Point2D> points,
       out Point2D boxMin,
       out Point2D boxMax
    )

    Parameters

    points
    The set of points
    boxMin
    The minimum point of the bounding box
    boxMax
    The maximum point of the bounding box
    See Also