home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / pov3demo / objects / blob1c.pov < prev    next >
Text File  |  1997-12-12  |  667b  |  29 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, 5, -5>
  10.   look_at   <0, 0, 0>
  11.   angle 58
  12. }
  13.  
  14. light_source { <-20, 30, -25> color red 0.6 green 0.6 blue 0.6 }
  15. light_source { < 20, 30, -25> color red 0.6 green 0.6 blue 0.6 }
  16.  
  17. blob {
  18.   threshold 0.5
  19.   sphere { <-2, 0, 0>, 1, 2 }
  20.   cylinder { <-2, 0, 0>, <2, 0, 0>, 0.5, 1 }
  21.   cylinder { <0, 0, -2>, <0, 0, 2>, 0.5, 1 }
  22.   cylinder { <0, -2, 0>, <0, 2, 0>, 0.5, 1 }
  23.  
  24.   pigment { color red 1 green 0 blue 0 }
  25.   finish { ambient 0.2 diffuse 0.8 phong 1 }
  26.  
  27.   rotate <0, 20, 0>
  28. }
  29.