1UNTITLED LOCAL UNTITLED
2
4 glutWireDodecahedron — Draw a wireframe dodecahedron.
5
7 OpenGLUT - geometry
8
10 #include <openglut.h>
11
12 void
13 glutWireDodecahedron(void);
14
16 This function draws a regular, wireframe 12-sided polyhedron centered at
17 the origin. The distance from the origin to the vertices is sqrt(3).
18 The facets are pentagons. No facet is normal any of the x, y, or z
19 axes.
20
22 glutSolidDodecahedron(3) glutWireRhombicDodecahedron(3)
23 glutSolidRhombicDodecahedron(3)
24
25
26
27
28 Epoch