Autodesk.AutoCAD.Geometry Namespace > EllipticalArc2d Class > EllipticalArc2d Constructor > EllipticalArc2d(Point2d, Vector2d, Vector2d, double, double, double, double) Constructor
EllipticalArc2d.EllipticalArc2d(Point2d, Vector2d, Vector2d, double, double, double, double) Constructor
Description

 

Constructs an ellipse with the specified center, major and minor axes, major and minor radii, and start and end angles. 

The angle of a point on the ellipse is measured by drawing a full circle with the same center as the ellipse, with a radius equal to the ellipse's major radius, and projecting the point onto the circle along a vector perpendicular to the major axis. If a vector is then drawn from the ellipse center to this projected point, the angle between the major axis and this vector (measured counterclockwise about the cross product of the major and minor axes) is the angle of the point on the ellipse. 

endAngle must be greater than startAngle

To construct a full ellipse, the difference between endAngle and startAngle should be 2 x Pi.

Visual Basic
Public Sub New(
    center As Point2d, 
    majorAxis As Vector2d, 
    minorAxis As Vector2d, 
    majorRadius As double, 
    minorRadius As double, 
    startAngle As double, 
    endAngle As double
)
C#
public EllipticalArc2d(
    Point2d center, 
    Vector2d majorAxis, 
    Vector2d minorAxis, 
    double majorRadius, 
    double minorRadius, 
    double startAngle, 
    double endAngle
);
Parameters
Parameters 
Description 
Point2d center 
Input ellipse center 
Vector2d majorAxis 
Input ellipse major axis 
Vector2d minorAxis 
Input ellipse minor axis 
double majorRadius 
Input ellipse major radius 
double minorRadius 
Input ellipse minor radius 
double startAngle 
Input angle of ellipse start point 
double endAngle 
Input angle of ellipse end point 
Links
   Comments?