Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Mesh Class / CreateArrow Method / CreateArrow(Point3D,Vector3D,Double,Double,Double,Double,Int32,natureType,edgeStyleType) Method
Arrow's start point
Arrow's direction
Arrow's cylinder radius
Arrow's cylinder length
Arrow's cone radius
Arrow's cone length
Number of slices
Nature of the mesh
Style of the edges

In This Topic
    CreateArrow(Point3D,Vector3D,Double,Double,Double,Double,Int32,natureType,edgeStyleType) Method
    In This Topic
    Creates a 3D arrow primitive.
    Syntax
    'Declaration
     
    Public Overloads Shared Function CreateArrow( _
       ByVal startPoint As Point3D, _
       ByVal direction As Vector3D, _
       ByVal cylRadius As Double, _
       ByVal cylLength As Double, _
       ByVal coneRadius As Double, _
       ByVal coneLength As Double, _
       ByVal slices As Integer, _
       ByVal meshNature As Mesh.natureType, _
       ByVal edgeStyle As Mesh.edgeStyleType _
    ) As Mesh
    public static Mesh CreateArrow( 
       Point3D startPoint,
       Vector3D direction,
       double cylRadius,
       double cylLength,
       double coneRadius,
       double coneLength,
       int slices,
       Mesh.natureType meshNature,
       Mesh.edgeStyleType edgeStyle
    )

    Parameters

    startPoint
    Arrow's start point
    direction
    Arrow's direction
    cylRadius
    Arrow's cylinder radius
    cylLength
    Arrow's cylinder length
    coneRadius
    Arrow's cone radius
    coneLength
    Arrow's cone length
    slices
    Number of slices
    meshNature
    Nature of the mesh
    edgeStyle
    Style of the edges

    Return Value

    The created mesh.
    See Also