Ellipse2d.CreateFromLength Method

Approximates a new elliptical arc given a startangle and a length. If the length is larger than a full ellipse of the specified parameters, an exception will be thrown (numerical computations will never converge).
public static Ellipse2d CreateFromLength( 
   Point2d center
   double radius1
   double radius2
   double startangle
   double length
   double angle 
)

Parameters

center
Point2d

The center point of the elliptical arc.

radius1
double

Radius of one of the axis.

radius2
double

Radius of the other axis.

startangle
double

The start angle of elliptical arc.

length
double

The length of the elliptical arc.

angle
double

The tilt angle in the plane of the ellipse.

Return Value

Ellipse2d

A new elliptical arc with the given parameters.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition