home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / atari / GRAPHX / POV / 68030.060 / POV31G30 / POVRAY_3.1G / SCENES / OBJECTS / BLOB1B.POV < prev    next >
Text File  |  1999-10-30  |  911b  |  34 lines

  1. // Persistence Of Vision raytracer version 3.1 sample file.
  2. // File by Alexander Enzmann (modified by Dieter Bayer)
  3.  
  4.  
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. camera {
  8.   location  <0, 8, -10>
  9.   right <2, 0, 0>
  10.   look_at   <0, 0, -1>
  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, -3>, <7, 0, -3>, 0.8, 1 }
  19.   cylinder { <-7, 0, -2>, <7, 0, -2>, 0.8, 1 }
  20.   cylinder { <-7, 0, -1>, <7, 0, -1>, 0.8, 1 }
  21.   cylinder { <-7, 0,  0>, <7, 0,  0>, 0.8, 1 }
  22.   cylinder { <-7, 0,  1>, <7, 0,  1>, 0.8, 1 }
  23.   cylinder { <-7, 0,  2>, <7, 0,  2>, 0.8, 1 }
  24.   cylinder { <-7, 0,  3>, <7, 0,  3>, 0.8, 1 }
  25.  
  26.   sphere { <-1, 1,  1>, 1.5, 1 }
  27.   sphere { < 1, 1,  1>, 1.5, 1 }
  28.   sphere { <-1, 1, -1>, 1.5, 1 }
  29.   sphere { < 1, 1, -1>, 1.5, 1 }
  30.  
  31.   pigment { color red 1 green 0 blue 0 }
  32.   finish { ambient 0.2 diffuse 0.8 phong 1 }
  33. }
  34.