home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma87a.dms / ma87a.adf / pov3c_1.lha / docsdemo / image.pov < prev    next >
Text File  |  1996-11-07  |  393b  |  31 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. global_settings { 
  9.   assumed_gamma 2.2 
  10.   hf_gray_16
  11. }
  12.  
  13. camera {
  14.   location <0, 0, -10>
  15.   look_at 0
  16. }
  17.  
  18. plane { z, 10
  19.   pigment { 
  20.     wrinkles
  21.     color_map {
  22.      [0 0.3*White]
  23.      [1 White]
  24.     }
  25.   }
  26. }
  27.  
  28. light_source { <0, 20, -100> color White }
  29.  
  30.  
  31.