Tao.OpenGl SDK Documentation

Glu.gluQuadricDrawStyle Method 

Specifies the draw style desired for quadrics.

[Visual Basic]
Public Shared Sub gluQuadricDrawStyle( _
   ByVal quad As GLUquadric, _
   ByVal drawStyle As Integer _
)
[C#]
public static void gluQuadricDrawStyle(
   GLUquadric quad,
   int drawStyle
);

Parameters

quad
The quadric object (created with gluNewQuadric).
drawStyle

The desired draw style. The following values are valid:

Value Description
GLU_FILL Quadrics are rendered with polygon primitives. The polygons are drawn in a counterclockwise fashion with respect to their normals (as defined with gluQuadricOrientation).
GLU_LINE Quadrics are rendered as a set of lines.
GLU_SILHOUETTE Quadrics are rendered as a set of lines, except that edges separating coplanar faces will not be drawn.
GLU_POINT Quadrics are rendered as a set of points.

Remarks

gluQuadricDrawStyle specifies the draw style for quadrics rendered with quad.

See Also

Glu Class | Tao.OpenGl Namespace | gluNewQuadric | gluQuadricNormals | gluQuadricOrientation | gluQuadricTexture