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 >
Wrap
Text File
|
1996-11-07
|
337b
|
16 lines
// Persistence Of Vision raytracer version 3.0 sample file.
// Illustrates that #if #else can be nested and it works with #include
#version 3.0
global_settings { assumed_gamma 2.2 }
#if (clock < 1.0)
#include "shear1.pov"
#else
#if (clock < 2.0)
#include "shear2.pov"
#else
#include "shear3.pov"
#end
#end