FLineGetIntersectingLine Method

Return a reference to the first line intersecting the caller's point from the supplied list of lines.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static FLine GetIntersectingLine(
	List<FLine> lines,
	FPoint point
)

Parameters

lines  ListFLine
Reference to a list of lines, one or more of which might contain the caller's point.
point  FPoint
Reference to the point to compare.

Return Value

FLine
Reference to the first line in the collection containing the caller's point, if found. Otherwise, null.

See Also