Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / GetBoundingBoxTransformed Method
The transformation to apply to the bounding box
The minimum point of the bounding box
The maximum point of the bounding box
The transformed minimum point
The transformed maximum point

In This Topic
    GetBoundingBoxTransformed Method
    In This Topic
    Transforms the eight corners of a world-aligned bounding box and returns the minimum and maximum corners.
    Syntax
    'Declaration
     
    Public Shared Sub GetBoundingBoxTransformed( _
       ByVal transform As Transformation, _
       ByVal min As Point3D, _
       ByVal max As Point3D, _
       ByRef boxMin As Point3D, _
       ByRef boxMax As Point3D _
    ) 
    public static void GetBoundingBoxTransformed( 
       Transformation transform,
       Point3D min,
       Point3D max,
       out Point3D boxMin,
       out Point3D boxMax
    )

    Parameters

    transform
    The transformation to apply to the bounding box
    min
    The minimum point of the bounding box
    max
    The maximum point of the bounding box
    boxMin
    The transformed minimum point
    boxMax
    The transformed maximum point
    See Also