home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / scenes / objects / fractal3.pov < prev    next >
Encoding:
Text File  |  2000-04-06  |  555 b   |  26 lines

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