CircularArc3d.CircularArc3d(Point3d, Vector3d, double) Constructor

Visual Basic
Public Sub New(
    center As Point3d, 
    normal As Vector3d, 
    radius As double
)
C#
public CircularArc3d(
    Point3d center, 
    Vector3d normal, 
    double radius
);
Parameters
Parameters 
Description 
Point3d center 
Input center of arc 
Vector3d normal 
Input normal vector of arc 
double radius 
Input radius of arc 
Description

Constructs a full circle with the given center, normal vector, and radius. The radius must not be 0. The constructed circle is oriented counterclockwise about the normal vector.

Links