1UNTITLED LOCAL UNTITLED
2
4 glutWireTeapot — Draw a wireframe teapot.
5
7 OpenGLUT - geometry
8
10 #include <openglut.h>
11
12 void
13 glutWireTeapot(GLdouble size);
14
16 size Scale factor.
17
19 This function draws the standard Teapot in wireframe using OpenGL evalua‐
20 tors. This is the classic "Utah Teapot" of computer graphics. The base
21 should lie in the xy-plane with "up" being along the positive z axis.
22
23 This is derived from SGI code. It should also be the same as the teapot
24 modeled by Martin Newell in 1975.
25
27 glutSolidTeapot(3)
28
29
30
31
32 Epoch