Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawLineStrip Method / DrawLineStrip(Single[],Int32,Int32) Method
Array of vertices coordinates (3 float per vertex)
The index of the first vertex to draw
The number of the vertices to draw

In This Topic
    DrawLineStrip(Single[],Int32,Int32) Method
    In This Topic
    Draws a line strip of vertices.
    Syntax
    'Declaration
     
    Public Overloads MustOverride Sub DrawLineStrip( _
       ByVal vertices() As Single, _
       ByVal first As Integer, _
       ByVal count As Integer _
    ) 
    public abstract void DrawLineStrip( 
       float[] vertices,
       int first,
       int count
    )

    Parameters

    vertices
    Array of vertices coordinates (3 float per vertex)
    first
    The index of the first vertex to draw
    count
    The number of the vertices to draw
    See Also