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

Constructs a full circular cone defined by the input data.

Visual Basic
Public Sub New(
    cosineAngle As double, 
    sineAngle As double, 
    baseOrigin As Point3d, 
    baseRadius As double, 
    axisOfSymmetry As Vector3d
)
C#
public Cone(
    double cosineAngle, 
    double sineAngle, 
    Point3d baseOrigin, 
    double baseRadius, 
    Vector3d axisOfSymmetry
);
Parameters
Parameters 
Description 
double cosineAngle 
Input cosine of the angle formed by cone generator and its axis 
double sineAngle 
Input sine of the angle formed by cone generator and its axis 
Point3d baseOrigin 
Input center of the circular base 
double baseRadius 
Input radius of the circular base 
Vector3d axisOfSymmetry 
Input cone's axis of rotation 
Links
   Comments?