Glu.QuadricDrawStyle (gb.opengl.glu)
Static Sub QuadricDrawStyle ( Quad As GluQuadric, DrawStyle As Integer )
Specify the draw style desired for quadrics.
Parameters
- quad
-
Specifies the quadrics object (created with Glu.NewQuadric).
- draw
-
Specifies the desired draw style. Valid values are
Glu.FILL,
Glu.LINE,
Glu.SILHOUETTE, and
Glu.POINT.
Description
Glu.QuadricDrawStyle specifies the draw style for quadrics rendered with
quad. The legal values are as follows:
- Glu.FILL
-
Quadrics are rendered with polygon primitives. The polygons
are drawn in a counterclockwise fashion with respect to their
normals (as defined with Glu.QuadricOrientation).
- 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.
See also
See original documentation on OpenGL website