Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / OrientedBoundingBox Class / DoOverlapOrTouch Method
first oriented bounding box to check
second oriented bounding box to check

In This Topic
    DoOverlapOrTouch Method (OrientedBoundingBox)
    In This Topic
    Checks if two Oriented Bounding Boxes overlap or touch each other.
    Syntax
    'Declaration
     
    Public Shared Function DoOverlapOrTouch( _
       ByVal first As OrientedBoundingBox, _
       ByVal second As OrientedBoundingBox _
    ) As Boolean
    public static bool DoOverlapOrTouch( 
       OrientedBoundingBox first,
       OrientedBoundingBox second
    )

    Parameters

    first
    first oriented bounding box to check
    second
    second oriented bounding box to check

    Return Value

    False if a separation axis between the two boxes was found, true otherwise.
    See Also