home *** CD-ROM | disk | FTP | other *** search
/ Ray Tracing Box / RAY_CD.mdf / raytrace / povshell / texture.tpl < prev    next >
Text File  |  1994-01-17  |  795b  |  30 lines

  1. //Textures.tpl
  2.  
  3. /*
  4. The most complete form for defining a texture is as follows:
  5.  
  6.   texture {
  7.     TEXTURE_IDENTIFIER
  8.     pigment {...}
  9.     normal {...}
  10.     finish {...}
  11.     TRANSFORMATIONS...
  12.   }
  13.  
  14. Each of the items in a texture are optional but if they are present, the
  15. identifier must be first and the transformations bust be last.  The
  16. pigment, normal and finish parameters modify any pigment, normal and finish
  17. already specified in the TEXTURE_IDENTIFIER.  If no texture identifier is
  18. specified then the pigment, normal and finish statements modify the current
  19. default values.  TRANSFORMATIONs are translate, rotate and scale
  20. statements.  They should be specified last.
  21. */
  22.  
  23.   texture {
  24.  
  25.     pigment {         }
  26.     normal {          }
  27.     finish {          }
  28.  
  29.   }
  30.