home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / pov3demo / objects / fractal3.pov < prev    next >
Text File  |  1997-12-12  |  543b  |  27 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2.  
  3. #version 3.0
  4. global_settings { assumed_gamma 2.2 }
  5.  
  6. julia_fractal {
  7.         <.49,.5,-.34,.1>
  8.         quaternion
  9.         max_iteration 7
  10.         precision 400
  11.     texture {  pigment { color rgb <.7,.9,.8> }
  12.            finish {phong .3 phong_size 200 }
  13.    }
  14.    rotate <110,50,-60>
  15. }
  16.  
  17. background { color rgb <1,1,1> }
  18.  
  19. light_source { <2,4.2,10> color rgb <.9,.95,.9> }
  20.  
  21. camera { location <0,3.3,0>
  22.          up       <0,0,1>
  23.          right    <1,0,0>
  24.      sky      <0,0,1>
  25.          look_at  <0,0,0>
  26. }
  27.