2027 Method
Changes 0
M

Outline.Intersects

Description:
Determine if this Outline intersects the input Outline to within a specified tolerance.
Remarks:
If the tolerance is positive, the outlines may be separated by the tolerance distance in each coordinate. If the tolerance is negative, the outlines must overlap by at least the tolerance distance in each coordinate.
public bool Intersects(
	Outline outline,
	double tolerance
)
  • outline
    The outline to test for intersection with this one.
  • Double
    tolerance
    The tolerance to use when determining intersection. Defaults to zero.
Return Value Boolean True if the given outline intersects this outline.