Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Mesh Class / CreateCylinder Method / CreateCylinder<T>(Double,Double,Int32) Method
Cylinder's radius
Cylinder's height
Number of faces of the cylinder approximation

In This Topic
    CreateCylinder<T>(Double,Double,Int32) Method
    In This Topic
    Creates a Cylinder primitive.
    Syntax
    'Declaration
     
    Public Overloads Shared Function CreateCylinder(Of T As {New, Mesh})( _
       ByVal radius As Double, _
       ByVal height As Double, _
       ByVal slices As Integer _
    ) As T
    public static T CreateCylinder<T>( 
       double radius,
       double height,
       int slices
    )
    where T: new(), Mesh

    Parameters

    radius
    Cylinder's radius
    height
    Cylinder's height
    slices
    Number of faces of the cylinder approximation

    Type Parameters

    T

    Return Value

    The created mesh.
    See Also