Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawLines Method / DrawLines(Point3D[],Color[],Int32,Int32) Method
The vertices
The color of each vertex
The index of the first vertex to draw
The number of the vertices to draw

In This Topic
    DrawLines(Point3D[],Color[],Int32,Int32) Method
    In This Topic
    Draws lines with colored vertices.
    Syntax
    'Declaration
     
    Public Overloads MustOverride Sub DrawLines( _
       ByVal vertices() As Point3D, _
       ByVal colors() As Color, _
       ByVal first As Integer, _
       ByVal count As Integer _
    ) 
    public abstract void DrawLines( 
       Point3D[] vertices,
       Color[] colors,
       int first,
       int count
    )

    Parameters

    vertices
    The vertices
    colors
    The color of each vertex
    first
    The index of the first vertex to draw
    count
    The number of the vertices to draw
    See Also