home *** CD-ROM | disk | FTP | other *** search
/ Chestnut's Multimedia Mania / MM_MANIA.ISO / graphics / povscn20 / box.pov < prev    next >
Text File  |  1993-09-27  |  545b  |  29 lines

  1. // POV-Ray 2.0 sample data file written by Alexander Enzmann
  2.  
  3. camera {
  4.    location  <0, 0, -8>
  5.    direction <0, 0, 1.2071>
  6.    look_at   <0, 0, 0>
  7. }
  8.  
  9. sphere { <0.0, 0.0, 0.0>, 2
  10.    finish {
  11.       ambient 0.2
  12.       diffuse 0.8
  13.       phong 1
  14.    }
  15.    pigment { color red 1 green 0 blue 0 }
  16. }
  17.  
  18. box { <-2.0, -0.2, -2.0>, <2.0, 0.2, 2.0>
  19.     finish {
  20.        ambient 0.2
  21.        diffuse 0.8
  22.     }
  23.     pigment { color red 1 green 0 blue 1 }
  24.  
  25.     rotate <-20, 30, 0>
  26. }
  27.  
  28. light_source { <-10, 3, -20> color red 1 green 1 blue 1 }
  29.