1UNTITLED LOCAL UNTITLED
2
4 glutWireCylinder — Draw a wireframe cylinder.
5
7 OpenGLUT - geometry
8
10 #include <openglut.h>
11
12 void
13 glutWireCylinder(GLdouble radius, GLdouble height, GLint slices,
14 GLint stacks);
15
17 radius Radius of cylinder.
18
19 height Z height.
20
21 slices Number of divisions around the z axis.
22
23 stacks Number of divisions along the z axis.
24
26 glutWireCylinder() draws a wireframe of a cylinder, the center of whose
27 base is at the origin, and whose axis parallels the z axis.
28
30 glutSolidCylinder(3)
31
32
33
34
35 Epoch