Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Mesh Class / CreateCone Method / CreateCone<T>(Double,Double,Point3D,Point3D,Int32) Method
Cone's base radius
Cone's top radius
Cone''s first point
Cone''s second point
Number of faces of the cylinder approximation

In This Topic
    CreateCone<T>(Double,Double,Point3D,Point3D,Int32) Method
    In This Topic
    Creates a Cone primitive.
    Syntax
    'Declaration
     
    Public Overloads Shared Function CreateCone(Of T As {New, Mesh})( _
       ByVal baseRadius As Double, _
       ByVal topRadius As Double, _
       ByVal point1 As Point3D, _
       ByVal point2 As Point3D, _
       ByVal slices As Integer _
    ) As T
    public static T CreateCone<T>( 
       double baseRadius,
       double topRadius,
       Point3D point1,
       Point3D point2,
       int slices
    )
    where T: new(), Mesh

    Parameters

    baseRadius
    Cone's base radius
    topRadius
    Cone's top radius
    point1
    Cone''s first point
    point2
    Cone''s second point
    slices
    Number of faces of the cylinder approximation

    Type Parameters

    T

    Return Value

    The created mesh.
    See Also