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 Shared Function CreateFromLength( _ 
ByVal center As Point2d, _ 
ByVal radius1 As Double, _ 
ByVal radius2 As Double, _ 
ByVal startangle As Double, _ 
ByVal length As Double, _ 
ByVal angle As Double
) As Ellipse2d
This language is not supported or no code example is available.
public static Ellipse2d CreateFromLength( 
Point2d center
double radius1
double radius2
double startangle
double length
double angle 
)
This language is not supported or no code example is available.
public:  
static Ellipse2d^ CreateFromLength( 
Point2d^ center
double radius1
double radius2
double startangle
double length
double angle 
)
This language is not supported or no code example is available.
public static function CreateFromLength( 
center : Point2d
radius1 : double
radius2 : double
startangle : double
length : double
angle : double 
) : Ellipse2d;
This language is not supported or no code example is available.

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