PARSTXTR.H 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /****************************************************************************
  2. * parstxtr.h
  3. *
  4. * This header file is included by all all language parsing C modules in
  5. * POV-Ray.
  6. *
  7. * from Persistence of Vision(tm) Ray Tracer
  8. * Copyright 1996,1999 Persistence of Vision Team
  9. *---------------------------------------------------------------------------
  10. * NOTICE: This source code file is provided so that users may experiment
  11. * with enhancements to POV-Ray and to port the software to platforms other
  12. * than those supported by the POV-Ray Team. There are strict rules under
  13. * which you are permitted to use this file. The rules are in the file
  14. * named POVLEGAL.DOC which should be distributed with this file.
  15. * If POVLEGAL.DOC is not available or for more info please contact the POV-Ray
  16. * Team Coordinator by email to team-coord@povray.org or visit us on the web at
  17. * http://www.povray.org. The latest version of POV-Ray may be found at this site.
  18. *
  19. * This program is based on the popular DKB raytracer version 2.12.
  20. * DKBTrace was originally written by David K. Buck.
  21. * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  22. *
  23. *****************************************************************************/
  24. #ifndef PARSTXTR_H
  25. #define PARSTXTR_H
  26. #include "atmosph.h"
  27. #include "interior.h"
  28. /*****************************************************************************
  29. * Global preprocessor defines
  30. ******************************************************************************/
  31. /*****************************************************************************
  32. * Global typedefs
  33. ******************************************************************************/
  34. /*****************************************************************************
  35. * Global variables
  36. ******************************************************************************/
  37. extern TEXTURE *Default_Texture;
  38. /*****************************************************************************
  39. * Global functions
  40. ******************************************************************************/
  41. TEXTURE *Parse_Texture (void);
  42. void Parse_Pigment (PIGMENT **);
  43. void Parse_Tnormal (TNORMAL **);
  44. void Parse_Finish (FINISH **);
  45. void Parse_Media (IMEDIA **);
  46. void Parse_Interior (INTERIOR **);
  47. void Parse_Media_Density_Pattern (PIGMENT **);
  48. FOG *Parse_Fog (void);
  49. RAINBOW *Parse_Rainbow (void);
  50. SKYSPHERE *Parse_Skysphere (void);
  51. IMAGE *Parse_Image (int);
  52. void Parse_Material(MATERIAL *Material);
  53. #endif