Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / GetSizeOnPlane Method
3D bounding box min corner
3D bounding box max corner
The projection plane
The resulting 2D min corner
The resulting 2D max corner

In This Topic
    GetSizeOnPlane Method
    In This Topic
    Gets 2D corners of the rectangle enclosing the projection of the 3D bounding box corners.
    Syntax
    'Declaration
     
    Public Shared Sub GetSizeOnPlane( _
       ByVal cornerMin As Point3D, _
       ByVal cornerMax As Point3D, _
       ByVal pln As Plane, _
       ByRef min As Point2D, _
       ByRef max As Point2D _
    ) 
    public static void GetSizeOnPlane( 
       Point3D cornerMin,
       Point3D cornerMax,
       Plane pln,
       out Point2D min,
       out Point2D max
    )

    Parameters

    cornerMin
    3D bounding box min corner
    cornerMax
    3D bounding box max corner
    pln
    The projection plane
    min
    The resulting 2D min corner
    max
    The resulting 2D max corner
    See Also