home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma87a.dms / ma87a.adf / pov3c_1.lha / docsdemo / sordemo.pov < prev    next >
Text File  |  1996-11-07  |  601b  |  38 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. #include "golds.inc"
  8.  
  9. global_settings { assumed_gamma 2.2 }
  10.  
  11. camera {
  12.   location <10, 15, -20>
  13.   look_at <0, 5, 0>
  14.   angle 45
  15. }
  16.  
  17. background { color rgb<0.2, 0.4, 0.8>  }
  18.  
  19. light_source { <100, 100, -100> color rgb 1 }
  20.  
  21. plane { y, 0
  22.   pigment { checker color Red, color Green scale 10 }
  23. }
  24.  
  25. sor {
  26.   8,
  27.   <0.0,  -0.5>,
  28.   <3.0,   0.0>,
  29.   <1.0,   0.2>,
  30.   <0.5,   0.4>,
  31.   <0.5,   4.0>,
  32.   <1.0,   5.0>,
  33.   <3.0,  10.0>,
  34.   <4.0,  11.0>
  35.   texture { T_Gold_1B }
  36. }
  37.  
  38.