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

  1. // Persistence Of Vision raytracer version 3.1 sample file.
  2. // CRATER.POV
  3. // Render CRAT_DAT.POV to create CRAT_DAT.PNG and then render CRATER.POV
  4.  
  5.  
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9.  
  10. camera{location <0,8,-20> direction z*5 look_at 0}
  11.  
  12. light_source{<1000,1000,-1000> White}
  13.  
  14. height_field { 
  15.   png "crat_dat.png"
  16.   smooth
  17.   pigment {White}
  18.   translate <-.5, 0, -.5>
  19.   scale <17, 1.75, 17>
  20. }  
  21.