home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / moray32 / enviro.inc < prev    next >
Text File  |  1994-01-11  |  570b  |  38 lines

  1. //
  2. //  This include file contains a green (grassy) plane for a floor and a 
  3. //  blue sky.
  4. //
  5.  
  6. plane {
  7.   <0.0, 0.0, 1.0>, -0.01
  8.   texture {
  9.     pigment {
  10.       rgb <0.0, 0.8, 0.2>
  11.     }
  12.     finish {
  13.       ambient 0.4
  14.       diffuse 0.3
  15.       phong 0.2
  16.       phong_size 5
  17.     }
  18.   }
  19. }
  20.  
  21. sphere {
  22.   <0, 0, 0>, 1
  23.   texture {
  24.     pigment {
  25.       gradient z
  26.       color_map {
  27.          [0, 1 color rgb <0.9,0.9,1.0> color rgb <0.4,0.5,1.0> ]
  28.       }
  29.     }
  30.     finish {
  31.       ambient 1.0
  32.       diffuse 0.0
  33.     }
  34.   }
  35.   scale <1000,1000,1000>
  36. }
  37.  
  38.