FLineIsPointInArea Method

Return a value indicating whether the given point lies inside the bounding area defined by the points of the two provided lines.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2820.4317
C#
public static bool IsPointInArea(
	FLine lineA,
	FLine lineB,
	FVector2 point
)

Parameters

lineA  FLine
Reference to the first two points of the area.
lineB  FLine
Reference to the second two points of the area.
point  FVector2
Reference to the point to check for containment.

Return Value

Boolean
True if the caller's point exists in the area established by the four points of the two lines. Otherwise, false.

See Also