home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / povray3a / POV3Demo / Anim / Speclr / pov / Speclr
Text File  |  1996-07-04  |  550b  |  27 lines

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