home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************/
- /* poly.h */
- /* */
- /* Copyright (C) 1992, Bernard Kwok */
- /* All rights reserved. */
- /* Revision 1.0 */
- /* May, 1992 */
- /**********************************************************************/
- #ifndef POLY_H
- #define POLY_H
-
- OptionType Option;
- char *ProgName = "poly";
- FILE *meshf; /* File of meshes */
- FILE *pmesh; /* File of precomputed primitive meshes */
- FILE *textf; /* File of textures */
- FILE *viewf; /* File with viewing parameter for PR */
-
- char *cubefilename = /* Premeshed primitives (out norms) */
- "out.cube";
- char *cylfilename =
- "out.cyl";
- char *sphfilename =
- "out.sphere";
- char *conefilename =
- "out.cone";
-
- char *icubefilename = /* Premeshed primitives (in norms) */
- "in.cube";
- char *icylfilename =
- "in.cyl";
- char *isphfilename =
- "in.sphere";
- char *iconefilename =
- "in.cone";
-
- extern void Read_View();
-
- #endif /* POLY_H */
-
-
-
-