CADability dotNET
Returns true if the two rectangles are disjoint (do not overlap)

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public static bool Disjoint(
	BoundingRect b1,
	BoundingRect b2
)
Visual Basic
Public Shared Function Disjoint ( _
	b1 As BoundingRect, _
	b2 As BoundingRect _
) As Boolean
Visual C++
public:
static bool Disjoint(
	BoundingRect b1, 
	BoundingRect b2
)

Parameters

b1
Type: CADability..::..BoundingRect
First rectangle
b2
Type: CADability..::..BoundingRect
Second rectangle

Return Value

true if disjoint

See Also