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

In This Topic
    DoOverlapOrTouch Method (OrientedBoundingRect)
    In This Topic
    Checks if two Oriented Bounding Boxes overlap or touch each other.
    Syntax
    'Declaration
     
    Public Shared Function DoOverlapOrTouch( _
       ByVal first As OrientedBoundingRect, _
       ByVal second As OrientedBoundingRect _
    ) As Boolean
    public static bool DoOverlapOrTouch( 
       OrientedBoundingRect first,
       OrientedBoundingRect 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