Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawPointsWithColorsRGBIndeterminate Method / DrawPointsWithColorsRGBIndeterminate(Single[],Byte[],Int32,Int32) Method
The vertices
The colors (in RGB form)
First vertex index
Number of vertices

In This Topic
    DrawPointsWithColorsRGBIndeterminate(Single[],Byte[],Int32,Int32) Method
    In This Topic
    Draws a set of points with the specified colors, without specifying the kind of geometry.
    Syntax
    'Declaration
     
    Public Overloads MustOverride Sub DrawPointsWithColorsRGBIndeterminate( _
       ByVal points() As Single, _
       ByVal colors() As Byte, _
       ByVal first As Integer, _
       ByVal count As Integer _
    ) 
    public abstract void DrawPointsWithColorsRGBIndeterminate( 
       float[] points,
       byte[] colors,
       int first,
       int count
    )

    Parameters

    points
    The vertices
    colors
    The colors (in RGB form)
    first
    First vertex index
    count
    Number of vertices
    See Also