1UNTITLED LOCAL UNTITLED
2
4 glutSolidTeapot — Draw a solid teapot.
5
7 OpenGLUT - geometry
8
10 #include <openglut.h>
11
12 void
13 glutSolidTeapot(GLdouble size);
14
16 size Scale factor.
17
19 Draws the standard Teapot, solid shaded, using OpenGL evaluators. This
20 is the classic "Utah Teapot" of computer graphics. The base should lie
21 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 glutWireTeapot(3)
28
29
30
31
32 Epoch