FLineGetIntersectingLines Method

Return a list of lines intersecting the caller's point within the supplied list of lines.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static List<FLine> GetIntersectingLines(
	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

ListFLine
Reference to a list of lines in the collection containing the caller's point, if found. Otherwise, an empty list.

See Also