home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / MULTIMED / POVFRT02 / povfrt01.pov < prev    next >
Text File  |  1997-07-05  |  869b  |  38 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Martin Schulz
  3. // ---------------------------------------------------------------------
  4. // Example for PovFront, Internal Animation
  5. // ---------------------------------------------------------------------
  6. // Select Options,Internal Animation
  7. // Enable Internal Animation
  8. // Start render
  9. // Select View,Animation
  10.  
  11. // Standard pre-defined colors
  12. #include "colors.inc"
  13.  
  14. #version 3.0
  15. global_settings { assumed_gamma 2.2 }
  16.  
  17. camera {
  18.   location  <0, 1+40*clock,40-40*clock>
  19.   look_at   <0, 0, 0>
  20.   angle 30
  21.   rotate clock*180
  22. }
  23.  
  24. //light_source { <0, 40, 0> color red 1 green 0.9 blue 0.9 }
  25. light_source { <0, 40, 0> color White }
  26.  
  27. plane {
  28.    <0,1,0>,0
  29.    pigment { checker color Red, color Blue }
  30. }
  31.  
  32. cylinder {
  33.     <0,0,0>,<0,1.8,0>,3.2
  34.    pigment { color Green }
  35.  
  36. }
  37.  
  38.