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

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

    Parameters

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