Autodesk.AutoCAD.Geometry Namespace > Sphere Class > Sphere Constructor > Sphere(double, Point3d, Vector3d, Vector3d, double, double, double, double) Constructor
Sphere.Sphere(double, Point3d, Vector3d, Vector3d, double, double, double, double) Constructor
Description

 

Constructs a spherical segment defined by the input data.

Visual Basic
Public Sub New(
    radius As double, 
    center As Point3d, 
    northAxis As Vector3d, 
    referenceAxis As Vector3d, 
    startAngleU As double, 
    endAngleU As double, 
    startAngleV As double, 
    endAngleV As double
)
C#
public Sphere(
    double radius, 
    Point3d center, 
    Vector3d northAxis, 
    Vector3d referenceAxis, 
    double startAngleU, 
    double endAngleU, 
    double startAngleV, 
    double endAngleV
);
Parameters
Parameters 
Description 
double radius 
Input radius for the sphere 
Point3d center 
Input center point for the sphere 
Vector3d northAxis 
Input direction to the north pole 
Vector3d referenceAxis 
Input direction to the zero meridian 
double startAngleU 
Input start longitude 
double endAngleU 
Input end longitude 
double startAngleV 
Input start latitude 
double endAngleV 
Input end latitude 
Links
   Comments?