home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / scripts / pov / bizz01 / env01.inc < prev   
Encoding:
Text File  |  1994-05-27  |  723 b   |  43 lines

  1. //Environment for "Bizz01.pov".
  2. //This file gives the picture that overcastish look.
  3.  
  4. //by Blane Bizzaro
  5.  
  6. //Watery surface
  7. plane {y,-5.7
  8.   texture {
  9.     pigment {
  10.       rgb <0.25, 0.5, 1.0>
  11.     }
  12.     finish {
  13.       reflection 0.6
  14.       ambient 0.4
  15.       diffuse 0.3
  16.       phong 0.2
  17.       phong_size 5
  18.     }
  19.     normal {
  20.     ripples 0.7
  21.     frequency 0.8
  22.     }
  23. }}
  24. //Atmosphere
  25. sphere {
  26.   <0, 0, 0>, 1
  27.   texture {
  28.     pigment {
  29.       gradient z
  30.       color_map {
  31.          [0, 1 color rgb <0.2,0.9,0.5> color rgb <0.4,0.5,0.8> ]
  32.       }
  33.     }
  34.     finish {
  35.       ambient 1.0
  36.       diffuse 0.0
  37.     }
  38.   }
  39.   scale <1000,1000,1000>
  40. }
  41.  
  42. fog { color red 0.3 green 0.3 blue 0.4 distance 800 }
  43.