home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma87a.dms / ma87a.adf / pov3c_1.lha / docsdemo / fog.inc < prev    next >
Text File  |  1996-11-07  |  609b  |  38 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "colors.inc"
  7.  
  8. camera {
  9.   location  <0, 20, -100>
  10. }
  11.  
  12. background { colour SkyBlue }
  13.  
  14. plane { y, -10
  15.   pigment {
  16.     checker colour Yellow colour Green
  17.     scale 20
  18.   }
  19. }
  20.  
  21. sphere { <0, 25, 0>, 40
  22.   pigment { Red }
  23.   finish { phong 1.0 phong_size 20 }
  24. }
  25.  
  26. sphere { <-100, 150, 200>,  20
  27.   pigment { Green }
  28.   finish { phong 1.0 phong_size 20 }
  29. }
  30.  
  31. sphere { <100, 25, 100>, 30
  32.   pigment { Blue }
  33.   finish { phong 1.0 phong_size 20 }
  34. }
  35.  
  36. light_source { <100, 120, 40> colour White}
  37.  
  38.