Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / BoundingRectOnPlane Method
A collection of 2D points lies on Plane XY.
The min 2D point on the input plane definition
The max 2D point on the input plane definition

In This Topic
    BoundingRectOnPlane Method
    In This Topic
    Returns the bounding rectangle of a collection of 2D points by using a fixed plane orientation.
    Syntax
    'Declaration
     
    Public Shared Sub BoundingRectOnPlane( _
       ByVal pointList As IList(Of Point2D), _
       ByVal plane As Plane, _
       ByRef min As Point2D, _
       ByRef max As Point2D _
    ) 
    public static void BoundingRectOnPlane( 
       IList<Point2D> pointList,
       Plane plane,
       out Point2D min,
       out Point2D max
    )

    Parameters

    pointList
    A collection of 2D points lies on Plane XY.
    plane
    min
    The min 2D point on the input plane definition
    max
    The max 2D point on the input plane definition
    See Also