Autodesk.AutoCAD.Geometry Namespace > CircularArc3d Class > CircularArc3d Constructor > CircularArc3d(Point3d, Point3d, Point3d) Constructor
CircularArc3d.CircularArc3d(Point3d, Point3d, Point3d) Constructor
Description

Constructs an arc through three points. None of the three points may be coincindent and they may not be colinear. This constructor always constructs a bounded arc and cannot be used to construct a full circle.

Visual Basic
Public Sub New(
    startPoint As Point3d, 
    pointOnArc As Point3d, 
    endPoint As Point3d
)
C#
public CircularArc3d(
    Point3d startPoint, 
    Point3d pointOnArc, 
    Point3d endPoint
);
Parameters
Parameters 
Description 
Point3d startPoint 
Input start point of arc 
Point3d endPoint 
Input endpoint of arc 
pnt 
Input point on arc 
Links
   Comments?