1UNTITLED LOCAL UNTITLED
2
4 glutWireSphere — Draw a wireframe sphere centered at the origin.
5
7 OpenGLUT - geometry
8
10 #include <openglut.h>
11
12 void
13 glutWireSphere(GLdouble radius, GLint slices, GLint stacks);
14
16 radius Sphere radius.
17
18 slices The number of divisions around the z axis. (latitudal)
19
20 stacks The number of divisions along the z axis. (longitudal)
21
23 The glutWireSphere() function draws a wireframe sphere centered at the
24 origin. The "equatorial" great circle lies in the xy-plane.
25
27 The number of line segments representing the spherical surface is propor‐
28 tional to (slices*stacks).
29
31 glutSolidSphere.(3)
32
33
34
35
36 Epoch