Click or drag to resize

ClipperEllipse(PointD, Double, Double, Int32) Method

Creates a floating-point ellipse approximation.

Namespace: Clipper2Lib
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static PathD Ellipse(
	PointD center,
	double radiusX,
	double radiusY = 0,
	int steps = 0
)

Parameters

center  PointD
The ellipse center.
radiusX  Double
The horizontal radius.
radiusY  Double  (Optional)
The vertical radius. If zero or less, radiusX is used.
steps  Int32  (Optional)
The number of approximation steps. When zero or too small, a value is chosen automatically.

Return Value

PathD
The approximated ellipse path.
See Also