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

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. //
  7. // Note: image.pov has to be traced before this scene can be used.
  8. //
  9.  
  10. #include "colors.inc"
  11.  
  12. camera{
  13.   location <0, 2, -10>
  14.   look_at 0
  15.   angle 30
  16. }
  17.  
  18. height_field {
  19.   tga "image.tga"
  20.   smooth
  21.   pigment { White }
  22.   translate <-.5, -.5, -.5>
  23.   scale <17, 1.75, 17>
  24.  }
  25.  
  26. light_source{ <1000,1000,-1000> White }
  27.  
  28.