home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / scenes / objects / blob1a.pov < prev    next >
Encoding:
Text File  |  2000-04-06  |  564 b   |  27 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, -15>
  9.   look_at   <0, 0, 0>
  10.   angle 46
  11. }
  12.  
  13. light_source { <10, 30, -20> color red 1 green 1 blue 1 }
  14.  
  15. blob {
  16.   threshold 0.5
  17.   cylinder { <-7, 0, 0>, <7, 0, 0>, 4, 2 }
  18.   cylinder { <0, 0, -7>, <0, 0, 7>, 4, 2 }
  19.   sphere { <0, 3, 0>, 2.5, -4 }
  20.  
  21.   pigment { color red 1 green 0 blue 0 }
  22.   finish { ambient 0.2 diffuse 0.8 phong 1 }
  23.  
  24.   rotate <-30, 0, 0>
  25. }
  26.  
  27.