home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / planet / build / sphere.pov < prev    next >
Encoding:
Text File  |  1995-02-08  |  411 b   |  37 lines

  1. #include "colors.inc"
  2. #include "shapes.inc"
  3. #include "textures.inc"
  4.  
  5. camera
  6.   {
  7.   location < 0,0,-40 >
  8.   look_at < 0,0,0 >
  9.   direction < 0,0,20 >
  10.   }
  11.  
  12. light_source
  13.   {
  14.   < -10,0, 0 >
  15.   color White
  16.   }
  17.  
  18. light_source
  19.   {
  20.   < -10,0,-10 >
  21.   color White
  22.   }
  23.  
  24. light_source
  25.   {
  26.   < 0,0,-10 >
  27.   color White
  28.   }
  29.  
  30. sphere
  31.   {
  32.   < 0, 0, 0>
  33.   1
  34.   pigment { Gray30 }
  35.   finish { Dull }
  36.   }
  37.