FEllipseGetLines Method

Return a collection of discrete lines representing the supplied ellipse.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static List<FLine> GetLines(
	FEllipse ellipse,
	int pointCount,
	float rotation = 0f
)

Parameters

ellipse  FEllipse
Reference to the ellipse to be represented.
pointCount  Int32
The count of discrete points to represent in the shape.
rotation  Single  (Optional)
Optional angle of local shape rotatation, in radians.

Return Value

ListFLine
Reference to a collection of lines representing the provided ellipse, in the resolution specified by pointCount.

Remarks

All of the lines are constructed from common adjoining points, which allows you to move any point in the shape without breaking its connection to either of its lines.

See Also