home *** CD-ROM | disk | FTP | other *** search
/ Dream 44 / Amiga_Dream_44.iso / Amiga / pov / pov3.0 / pov3c.lha / POVRAY3 / POV3DEMO / OTHER / IFELSE2.POV < prev    next >
Text File  |  1996-11-07  |  337b  |  16 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Illustrates that #if #else can be nested and it works with #include
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #if (clock < 1.0)
  8. #include "shear1.pov"
  9. #else
  10.   #if (clock < 2.0)
  11.     #include "shear2.pov"
  12.   #else
  13.     #include "shear3.pov"
  14.   #end
  15. #end
  16.