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.2414.4032
C#
public static bool IsPointInArea(
	FLine lineA,
	FLine lineB,
	FPoint 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  FPoint
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