Autodesk.AutoCAD.DatabaseServices Namespace > Arc Class > Arc Constructor > Arc(Point3d, double, double, double) Constructor
Arc.Arc(Point3d, double, double, double) Constructor
Description

 

This constructor creates an arc using the values passed in. center must be in WCS coordinates. The arc is initialized with a normal of (0,0,1) and a thickness of 0.0.

Visual Basic
Public Sub New(
    center As Point3d, 
    radius As double, 
    startAngle As double, 
    endAngle As double
)
C#
public Arc(
    Point3d center, 
    double radius, 
    double startAngle, 
    double endAngle
);
Parameters
Parameters 
Description 
Point3d center 
Input the center point of the arc. 
double radius 
Input the radius of the arc. 
double startAngle 
Input the starting angle of the arc. 
double endAngle 
Input the ending angle of the arc. 
Links
   Comments?