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

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "color.inc"
  7.  
  8. camera {
  9.   location <0, 0, -2.5>
  10.   look_at <0, 0, 0>
  11. }
  12.  
  13. light_source { <10, 10, -10> color rgb 1 shadowless }
  14.  
  15. plane { z, 2 
  16.   pigment { checker color rgb 0, color rgb 1 } 
  17.   finish { ambient 1 diffuse 0 }
  18.   scale 0.5
  19.   hollow
  20. }
  21.  
  22.