Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawLines Method / DrawLines(Point3D[],Color[],Single[]) Method
The vertices
The color of each vertex
The line width of each line (the size of the array must be half of the vertices array)

In This Topic
    DrawLines(Point3D[],Color[],Single[]) Method
    In This Topic
    Draws lines with colored vertices specifying a different lineWidth per line.
    Syntax
    'Declaration
     
    Public Overloads Sub DrawLines( _
       ByVal vertices() As Point3D, _
       ByVal colors() As Color, _
       ByVal lineWidths() As Single _
    ) 
    public void DrawLines( 
       Point3D[] vertices,
       Color[] colors,
       float[] lineWidths
    )

    Parameters

    vertices
    The vertices
    colors
    The color of each vertex
    lineWidths
    The line width of each line (the size of the array must be half of the vertices array)
    See Also