home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / atari / GRAPHX / POV / 68030.060 / POV31G30 / POVRAY_3.1G / SCENES / OBJECTS / BLOB.POV next >
Text File  |  1999-10-30  |  639b  |  29 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, -5>
  8.    direction <0, 0, 1.2071>
  9.    look_at   <0, 0, 0>
  10. }
  11.  
  12. light_source { <-15, 30, -25> color red 1 green 1 blue 1 }
  13. light_source { < 15, 30, -25> color red 1 green 1 blue 1 }
  14.  
  15. blob {
  16.    threshold 0.6
  17.    component 1.0, 1.0, <0.75, 0, 0>
  18.    component 1.0, 1.0, <-0.375, 0.64952, 0>
  19.    component 1.0, 1.0, <-0.375, -0.64952, 0>
  20.  
  21.    pigment { color red 1 green 0 blue 0 }
  22.    finish {
  23.       ambient 0.2
  24.       diffuse 0.8
  25.       phong 1
  26.    }
  27.    rotate 30*y
  28. }
  29.