1GLUQUADRICDRAWSTYLE(3G) OpenGL Manual GLUQUADRICDRAWSTYLE(3G)
2
3
4
6 gluQuadricDrawStyle - specify the draw style desired for quadrics
7
9 void gluQuadricDrawStyle(GLUquadric* quad, GLenum draw);
10
12 quad
13 Specifies the quadrics object (created with gluNewQuadric()).
14
15 draw
16 Specifies the desired draw style. Valid values are GLU_FILL,
17 GLU_LINE, GLU_SILHOUETTE, and GLU_POINT.
18
20 gluQuadricDrawStyle specifies the draw style for quadrics rendered with
21 quad. The legal values are as follows:
22
23 GLU_FILL
24 Quadrics are rendered with polygon primitives. The polygons are
25 drawn in a counterclockwise fashion with respect to their normals
26 (as defined with gluQuadricOrientation()).
27
28 GLU_LINE
29 Quadrics are rendered as a set of lines.
30
31 GLU_SILHOUETTE
32 Quadrics are rendered as a set of lines, except that edges
33 separating coplanar faces will not be drawn.
34
35 GLU_POINT
36 Quadrics are rendered as a set of points.
37
39 gluNewQuadric(), gluQuadricNormals(), gluQuadricOrientation(),
40 gluQuadricTexture()
41
43 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
44 under the SGI Free Software B License. For details, see
45 http://oss.sgi.com/projects/FreeB/.
46
48 opengl.org
49
50
51
52opengl.org 07/13/2018 GLUQUADRICDRAWSTYLE(3G)