home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / atari / GRAPHX / POV / 68030.060 / POV31G30 / POVRAY_3.1G / SCENES / ANIMATE / REFLECT / REFLECT.POV < prev   
Text File  |  1999-10-30  |  535b  |  26 lines

  1. // Persistence Of Vision raytracer version 3.1 sample file.
  2. // File by Dan Farmer
  3. // Reflection demonstration
  4.  
  5.  
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9. #include "stdcam.inc"
  10.  
  11. #declare R = clock;
  12.  
  13. #declare Font="cyrvetic.ttf"
  14. text{ ttf Font
  15.     concat("reflection=",str(R,1,1)),0.1,0
  16.     scale <1.25, 1.25, 4>
  17.     translate <-3.9, 0, 0>
  18.     pigment { rgb <1, 0.5, 0.2> }
  19.     finish { reflection R }
  20. }
  21.  
  22. sphere { <-1.5, 0.4, -2.5>, 0.4
  23.     pigment { LimeGreen }
  24.     finish { reflection R }
  25. }
  26.