Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawLineStripRGBA Method
Array of vertices coordinates plus color components (7 float per vertex)
The index of the first vertex to draw
The number of the vertices to draw

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

    Parameters

    vertices
    Array of vertices coordinates plus color components (7 float per vertex)
    first
    The index of the first vertex to draw
    count
    The number of the vertices to draw
    See Also