FAreaGetIntersections(FArea, FLine) Method

Return the intersections of a line with a rectangle.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static List<FPoint> GetIntersections(
	FArea area,
	FLine line
)

Parameters

area  FArea
Reference to the area to test.
line  FLine
Reference to the line to test.

Return Value

ListFPoint
Reference to a list of points where the supplied line intersects with the specified rectangle, if found. Otherwise, an empty list.

See Also