FAreaGetIntersections(FArea, FArea) Method

Return the intersections of two areas.

Definition

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

Parameters

area1  FArea
Reference to the first area to be tested.
area2  FArea
Reference to the second area to be tested.

Return Value

ListFPoint
Reference to a list of points where the two areas intersect, if found. Otherwise, an empty list.

See Also