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

  1. // Persistence Of Vision raytracer version 3.1 sample file.
  2.  
  3.  
  4. global_settings { assumed_gamma 2.2 }
  5.  
  6. julia_fractal {
  7.         <-.745,0,.113,.05>
  8.         max_iteration 9
  9.         precision 20
  10.         hypercomplex
  11.     texture {  pigment { color rgb <.9,.5,.6> } 
  12.            finish { phong .9 phong_size 20 }
  13.     }
  14.         rotate <135,-30,0>
  15. }
  16.  
  17. background { color rgb <1,1,1> }
  18.  
  19. light_source { <4,3.99,10> color rgb <.9,.95,.9> }
  20.  
  21. camera { location <0,3.0,2>
  22.          up       <0,1.4,0>
  23.          right    <1.4,0,0>
  24.      sky      <0,0,1>
  25.          look_at  <0,0,0>
  26. }
  27.