home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / graphics / 3dspov17.zip / SAMPLES.ZIP / 3DS.INC next >
Text File  |  1992-07-27  |  737b  |  52 lines

  1. /* Sample 3DS texture library for 3ds2pov */
  2.  
  3. #declare YELLOW_PLASTIC = texture {
  4.     ambient 0.1
  5.     diffuse 0.8
  6.     phong 1.0
  7.     phong_size 70.0
  8.     color Yellow
  9. }
  10.  
  11. #declare WHITE_PLASTIC = texture {
  12.     Shiny
  13.     color White
  14. }
  15.  
  16. #declare RED_PLASTIC = texture {
  17.     Shiny
  18.     color Red
  19. }
  20.  
  21. #declare BLACK_PLASTIC = texture {
  22.     Shiny
  23.     color Black
  24. }
  25.  
  26. #declare PURPLE_VELVET = texture {
  27.     0.1
  28.     ambient 0.1
  29.     diffuse 1.2
  30.     phong 0.3
  31.     phong_size 30.0
  32.     color Violet
  33. }
  34.  
  35. #declare BROWN_MATTE = texture {
  36.     Dull
  37.     color Brown
  38. }
  39.  
  40. #declare GOLD = texture {
  41.     Gold_Metal
  42. }
  43.  
  44. #declare COPPER = texture {
  45.     Copper_Metal
  46. }
  47.  
  48. #declare SILVER = texture {
  49.     Silver_Metal
  50. }
  51.  
  52.