FEllipseFindIntersections(FPoint, Single, Single, FLine, Boolean) Method
Return an array of coordinates containing zero or more intersections
between the edge of the ellipse and a provided line.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static FPoint[] FindIntersections(
FPoint center,
float radiusX,
float radiusY,
FLine line,
bool allowImaginary = false
)
Public Shared Function FindIntersections (
center As FPoint,
radiusX As Single,
radiusY As Single,
line As FLine,
Optional allowImaginary As Boolean = false
) As FPoint()
No code example is currently available or this language may not be supported.
- center FPoint
-
Reference to the center coordinate of the ellipse.
- radiusX Single
-
The X-axis radius of the ellipse.
- radiusY Single
-
The Y-axis radius of the ellipse.
- line FLine
-
Reference to the line being tested for intersection.
- allowImaginary Boolean (Optional)
-
Value indicating whether imaginary intersections on the line will
be included.
FPoint
Reference to an array of coordinates where the line crosses the edge
of the ellipse, if intersections were found. Otherwise, an empty array.