home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / radiance / simplerd.lha / simplerad / FinalFTP / Light / poly.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-20  |  1.3 KB  |  43 lines

  1. /**********************************************************************/
  2. /* poly.h                                                             */
  3. /*                                                                    */
  4. /* Copyright (C) 1992, Bernard Kwok                                   */
  5. /* All rights reserved.                                               */
  6. /* Revision 1.0                                                       */
  7. /* May, 1992                                                          */
  8. /**********************************************************************/
  9. #ifndef POLY_H
  10. #define POLY_H
  11.  
  12. OptionType Option;
  13. char *ProgName = "poly";
  14. FILE *meshf;                   /* File of meshes */ 
  15. FILE *pmesh;                   /* File of precomputed primitive meshes */
  16. FILE *textf;                   /* File of textures */
  17. FILE *viewf;                   /* File with viewing parameter for PR */
  18.  
  19. char *cubefilename =              /* Premeshed primitives (out norms) */
  20.      "out.cube";
  21. char *cylfilename = 
  22.      "out.cyl";
  23. char *sphfilename = 
  24.      "out.sphere";
  25. char *conefilename = 
  26.      "out.cone";
  27.  
  28. char *icubefilename =              /* Premeshed primitives (in norms) */
  29.      "in.cube";
  30. char *icylfilename = 
  31.      "in.cyl";
  32. char *isphfilename = 
  33.      "in.sphere";
  34. char *iconefilename = 
  35.      "in.cone";
  36.  
  37. extern void Read_View();
  38.  
  39. #endif /* POLY_H */
  40.  
  41.  
  42.  
  43.