home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * PLANET.H
- *
- * (Simon Hern, 1994)
- *
- * Dead short header file for Bouncing Planets animation
- *
- * The constant RHO (that's the greek letter, not some dumb TLA) is defined
- * And not much else
- *
- * This file is included in the PLANETS.C, MAKEGUSH.C and MAKEXION.C modules
- *
- */
-
- #ifndef PLANET_H
- #define PLANET_H
-
- /* Resolution of a planet's surface: the number of 'pixels' on a */
- /* line from the north pole to the south pole */
- /* (Resolutions other than RHO=128 are not actually supported, */
- /* so this is all a bit futile really) */
- #define RHO 128
-
- #define PI 3.141592654L
-
- #endif
-
-