home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / Pov / POVTOOLS / ATSIS / STONTILE.POV < prev    next >
Encoding:
Text File  |  1995-10-28  |  660 b   |  42 lines

  1. // Stone tile picture for SIS
  2. // render size: 96x470
  3.  
  4. #include "colors.inc"
  5.  
  6. camera {
  7.   location  <0, 0, -2>
  8.   direction <0, 0, 1.5>
  9.   up        <0, 1, 0>
  10.   right     <96/470, 0, 0>
  11.   look_at   <0, 0, 2>
  12. }
  13.  
  14. plane {
  15.   z, 0
  16.   texture {
  17.     pigment {
  18.       agate
  19.       scale .1
  20.       rotate 30*z
  21.       color_map {
  22.         [0 color red .5]
  23.         [.5 color White]
  24.         [1 color red .5]
  25.       }
  26.     }
  27.     finish { ambient 1 }
  28.   }
  29.   texture {
  30.     pigment {
  31.       bozo
  32.       scale .03
  33.       color_map {
  34.         [0 color Clear]
  35.         [.5 color Gray20]
  36.         [1 color Clear]
  37.       }
  38.     }
  39.     finish { ambient 1 }
  40.   }
  41. }
  42.