Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawPointsWithNormals Method
The collection of vertices to draw.
The collection of normals
First vertex index
Number of vertices

In This Topic
    DrawPointsWithNormals Method (RenderContextBase)
    In This Topic
    Draws a set of devDept.Geometry.Point3D specifying a normal per vertex.
    Syntax
    'Declaration
     
    Public MustOverride Sub DrawPointsWithNormals( _
       ByVal points() As Point3D, _
       ByVal normals() As Vector3D, _
       ByVal first As Integer, _
       ByVal count As Integer _
    ) 
    public abstract void DrawPointsWithNormals( 
       Point3D[] points,
       Vector3D[] normals,
       int first,
       int count
    )

    Parameters

    points
    The collection of vertices to draw.
    normals
    The collection of normals
    first
    First vertex index
    count
    Number of vertices
    See Also