Click or drag to resize

ClipperEllipse(Point64, Double, Double, Int32) Method

Creates an integer ellipse approximation.

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

Parameters

center  Point64
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

Path64
The approximated ellipse path.
See Also