home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / graphics / ftpovscn / 4 / bizzset.pov next >
Text File  |  1994-06-26  |  3KB  |  100 lines

  1. //WestCoast Sunset by Blane Bizzaro
  2.  
  3. #include "colors.inc"
  4.  
  5.  
  6. camera {
  7.    location  <0, 10, 200>
  8.    direction <0,  0,  -1>/*This seems to make the spherical shape of the
  9.                            sky more noticable.*/
  10.    up        <0,  1,   0>  
  11.    right   <4/3,  0,   0>
  12.    look_at   <0, 130, -300>/*I like the clouds at this location*/
  13. }
  14.  
  15. //The water
  16. plane { y, -10 
  17.    pigment {color red 0.2 green 0.3 blue 1 }
  18.    normal {
  19.       waves 0.05
  20.       frequency 5000
  21.       scale 3000     
  22.    }
  23.    finish {reflection 0.7}
  24. }
  25. //Errant wave catcher
  26. plane { y, -11 
  27.    pigment { color red 0.2 green 0.3 blue 1 }
  28.    finish { crand 0.05 ambient 1 diffuse 0 }
  29. }
  30.  
  31.  
  32. //The upper atmosphere
  33. sphere { <0, 0, 0>, 700
  34.    pigment {
  35.       gradient y
  36.       color_map {
  37.          [0.0 color Orange ]//The sky at the horizon
  38.          [0.5 color Blue ]//Mid-sky
  39.          [1.0 color red 0.4 green 0 blue 0.4 ]//Top, sort of dark purple.           
  40.       }
  41.       scale <700, 700, 700>
  42.       quick_color red 0.7  green 0.7 blue 1.0
  43.    }
  44.    finish {
  45.       ambient 0.7 
  46.       diffuse 0//This is so the clouds don't cast any shadows on the sky.   
  47.    }
  48. }
  49.  
  50. //Upper cloud layer
  51. sphere { <0, 0, 0>, 650
  52.    pigment {
  53.       bozo
  54.       turbulence 0.5
  55.       color_map {
  56.          [0,   0.6   color Clear
  57.                      color Clear]
  58.          [0.6, 0.8   color Clear
  59.                      color White]
  60.          [0.8, 1.001 color White
  61.                      color red 0.9 green 0.8 blue 0.8]
  62.       }
  63.       quick_color red 0.7 green 0.7 blue 1
  64.       scale <100, 20, 100>
  65.    }
  66.    finish {ambient 0.6 diffuse 0.2}/*Just a slightly higher ambient value
  67.                                      than the lower cloud layer.*/
  68. }
  69. //lower cloud layer
  70. sphere { <0, 0, 0> 600
  71.    pigment {
  72.      bozo 
  73.      turbulence 0.9
  74.      color_map {
  75.        [ 0  0.3  color Clear
  76.                  color Clear ]
  77.        [ 0.3 0.7 color Clear
  78.                  color White ]
  79.        [ 0.7 1   color White
  80.                  color red 0.9 green 0.8 blue 0.8 ]  
  81.                  }
  82.         quick_color red 0.7 green 0.7 blue 1
  83.         scale <180, 120, 180>
  84.             }
  85.     finish { ambient 0.4 diffuse 0.3 }
  86.          }
  87.   
  88. light_source { <0, -10, 210> color Red }/*This makes the clouds look
  89.                                           orange.*/   
  90.  
  91. light_source { <0, 0, 100> color Orange/*This gives the clouds that are 
  92.    spotlight                             in the center of the picture and
  93.    point_at <0, 130, -300>               close to the horizon a slightly
  94.    tightness 12                          brighter glow than the rest of 
  95.    radius 1000                           the clouds.*/ 
  96.    falloff 2000
  97. }
  98.  
  99.  
  100.