home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma87a.dms / ma87a.adf / pov3c_1.lha / docsdemo / textdemo.pov < prev    next >
Text File  |  1996-11-07  |  578b  |  34 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "colors.inc"
  7.  
  8. camera {
  9.   location <-5,.15,-2>
  10.   look_at <.3,.2,1>
  11.   angle 36
  12. }
  13.  
  14. light_source { <500,500,-1000> White }
  15.  
  16. plane { y,0
  17.   texture {
  18.     pigment { SeaGreen }
  19.     finish { reflection .35 specular 1 }
  20.     normal { ripples .35 turbulence .5 scale .25 }
  21.   }
  22. }
  23.  
  24. text { ttf "timrom.ttf" "POV-RAY 3.0" 25, 0.1*y
  25.   pigment { BrightGold }
  26.   finish { reflection .25 specular 1 }
  27.   translate -3*x
  28. }
  29.  
  30. #include "skies.inc"
  31.  
  32. sky_sphere { S_Cloud5 }
  33.  
  34.