FEllipseFindIntersections(FEllipse, FLine, Boolean) Method

Return an array of coordinates containing zero or more intersections between the edge of the ellipse and a provided line.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static FPoint[] FindIntersections(
	FEllipse ellipse,
	FLine line,
	bool allowImaginary = false
)

Parameters

ellipse  FEllipse
Reference to the ellipse to test for intersections.
line  FLine
Reference to the line being tested for intersection.
allowImaginary  Boolean  (Optional)
Value indicating whether imaginary intersections on the line will be included.

Return Value

FPoint
Reference to an array of coordinates where the line crosses the edge of the ellipse, if intersections were found. Otherwise, an empty array.

See Also