Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawBufferedPoint Method
The vertex

In This Topic
    DrawBufferedPoint Method (RenderContextBase)
    In This Topic
    Draws a point using a buffered approach.
    Syntax
    'Declaration
     
    Public Overridable Sub DrawBufferedPoint( _
       ByVal v0 As Point3D _
    ) 
    public virtual void DrawBufferedPoint( 
       Point3D v0
    )

    Parameters

    v0
    The vertex
    Remarks
    In Direct3D the vertices are stored in a buffer and drawn only when it is full. In OpenGL they are drawn immediately.
    See Also