FLineHasIntersection Method

Return a value indicating whether two lines share an intersection, either real or imagined.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2613.4238
C#
public static bool HasIntersection(
	FLine lineA,
	FLine lineB,
	bool allowImaginary = false
)

Parameters

lineA  FLine
Reference to the first line to compare for intersection.
lineB  FLine
Reference to the second line to compare for intersection.
allowImaginary  Boolean  (Optional)
Value indicating whether or not the planes of the two lines can be said to have an intersection outside of the physical line boundaries.

Return Value

Boolean
A value indicating whether an intersection exists for the lines or their imaginary planes.

See Also