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.2820.4317
C#
public static FLine GetIntersectingLine(
	List<FLine> lines,
	FVector2 point
)

Parameters

lines  ListFLine
Reference to a list of lines, one or more of which might contain the caller's point.
point  FVector2
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