home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / pov3demo / objects / blob1a.pov next >
Text File  |  1997-12-12  |  551b  |  28 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Alexander Enzmann (modified by Dieter Bayer)
  3.  
  4.  
  5. #version 3.0
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. camera {
  9.   location  <0, 8, -15>
  10.   look_at   <0, 0, 0>
  11.   angle 46
  12. }
  13.  
  14. light_source { <10, 30, -20> color red 1 green 1 blue 1 }
  15.  
  16. blob {
  17.   threshold 0.5
  18.   cylinder { <-7, 0, 0>, <7, 0, 0>, 4, 2 }
  19.   cylinder { <0, 0, -7>, <0, 0, 7>, 4, 2 }
  20.   sphere { <0, 3, 0>, 2.5, -4 }
  21.  
  22.   pigment { color red 1 green 0 blue 0 }
  23.   finish { ambient 0.2 diffuse 0.8 phong 1 }
  24.  
  25.   rotate <-30, 0, 0>
  26. }
  27.  
  28.