home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / spiele / argon / argon.exe / src / graphics / pov / ball.pov next >
Encoding:
Text File  |  1999-12-05  |  531 b   |  28 lines

  1. // Persistence Of Vision raytracer version 3.1    sample file.
  2. // File by Alexander Enzmann
  3.  
  4. global_settings { assumed_gamma 2.2 }
  5.  
  6. camera {
  7.    location  <0, 0, -8>
  8.    direction <0, 0, 1.2071>
  9.    look_at   <0, 0, 0>
  10. }
  11.  
  12. background { color red 3 green 3 blue 3 }
  13.  
  14. object {
  15.   union {
  16.  
  17.     sphere { <0.0, 0.0, 0.0>, 3
  18.            finish { ambient .1 diffuse 1.3 phong 1 }
  19.           pigment { color red .7 green .7 blue .7 }
  20.     }
  21.    }
  22.  
  23.  
  24.    scale <1.33, 1, 1>
  25. }
  26.  
  27. light_source { <-10, 10, -20> color red 1 green 1 blue 1 }
  28.