Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawTriangles Method / DrawTriangles(Point3D[],Vector3D[],PointF[],Boolean) Method
If true adds the data to the current buffer part

In This Topic
    DrawTriangles(Point3D[],Vector3D[],PointF[],Boolean) Method
    In This Topic
    Draws triangles with one normal per vertex and (optional) texture coordinates.
    Syntax
    'Declaration
     
    Public Overloads MustOverride Sub DrawTriangles( _
       ByVal vertices() As Point3D, _
       ByVal normals() As Vector3D, _
       Optional ByVal texCoords() As PointF, _
       Optional ByVal addToCurrentBufferPart As Boolean _
    ) 
    public abstract void DrawTriangles( 
       Point3D[] vertices,
       Vector3D[] normals,
       PointF[] texCoords,
       bool addToCurrentBufferPart
    )

    Parameters

    vertices
    normals
    texCoords
    addToCurrentBufferPart
    If true adds the data to the current buffer part
    See Also