Utility.DoOverlapOrTouch (Point3D, Point3D, Point3D, Point3D, Double) Method

Check if two bounding boxes overlap or touch.
Public Shared Function DoOverlapOrTouch( _ 
ByVal firstMin As Point3D, _ 
ByVal firstMax As Point3D, _ 
ByVal secondMin As Point3D, _ 
ByVal secondMax As Point3D, _ 
ByVal domainSize As Double
) As Boolean
This language is not supported or no code example is available.
public static bool DoOverlapOrTouch( 
Point3D firstMin
Point3D firstMax
Point3D secondMin
Point3D secondMax
double domainSize 
)
This language is not supported or no code example is available.

Parameters

firstMin
Point3D

First box min 3D point

firstMax
Point3D

First box max 3D point

secondMin
Point3D

Second box min 3D point

secondMax
Point3D

Second box max 3D point

domainSize
double

The domain size

Return Value

bool

True if the two boxes overlap or touch, false otherwise.

.NET Framework

Supported in: 4.8

In this article

Definition