Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / GetCornersOnPlane Method
The projection plane
The bounding box min corner
The bounding box max corner
The optional margin

In This Topic
    GetCornersOnPlane Method
    In This Topic
    Computes a rect on the plane that encloses the eight projected bounding box corners.
    Syntax
    'Declaration
     
    Public Shared Function GetCornersOnPlane( _
       ByVal pln As Plane, _
       ByVal min As Point3D, _
       ByVal max As Point3D, _
       Optional ByVal margin As Double _
    ) As Point3D()
    public static Point3D[] GetCornersOnPlane( 
       Plane pln,
       Point3D min,
       Point3D max,
       double margin
    )

    Parameters

    pln
    The projection plane
    min
    The bounding box min corner
    max
    The bounding box max corner
    margin
    The optional margin

    Return Value

    An array of four 3D points.
    See Also