blob: 28192de2d527f96f05c4730187d6377a2e45170f [file] [log] [blame]
Brian Paul976c26c2001-08-20 16:07:10 +00001/* uglglutshapes.h - Public header GLUT Shapes */
2
3/* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1998. */
4
5/* This program is freely distributable without licensing fees and is
6 provided without guarantee or warrantee expressed or implied. This
7 program is -not- in the public domain. */
8
9#ifndef GLUTSHAPES_H
10#define GLUTSHAPES_H
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16#include <GL/gl.h>
17
18void glutWireSphere (GLdouble radius, GLint slices, GLint stacks);
19void glutSolidSphere (GLdouble radius, GLint slices, GLint stacks);
20void glutWireCone (GLdouble base, GLdouble height,
21 GLint slices, GLint stacks);
22void glutSolidCone (GLdouble base, GLdouble height,
23 GLint slices, GLint stacks);
24void glutWireCube (GLdouble size);
25void glutSolidCube (GLdouble size);
26void glutWireTorus (GLdouble innerRadius, GLdouble outerRadius,
27 GLint sides, GLint rings);
28void glutSolidTorus (GLdouble innerRadius, GLdouble outerRadius,
29 GLint sides, GLint rings);
30void glutWireDodecahedron (void);
31void glutSolidDodecahedron (void);
32void glutWireOctahedron (void);
33void glutSolidOctahedron (void);
34void glutWireTetrahedron (void);
35void glutSolidTetrahedron (void);
36void glutWireIcosahedron (void);
37void glutSolidIcosahedron (void);
38void glutWireTeapot (GLdouble size);
39void glutSolidTeapot (GLdouble size);
40
41#ifdef __cplusplus
42}
43#endif
44
45#endif