erebus
diff liberebus/src/rt.h @ 6:bb006fb96f1b
forgot to add two files
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 24 May 2014 02:22:14 +0300 |
parents | |
children | e2d9bf168a41 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/liberebus/src/rt.h Sat May 24 02:22:14 2014 +0300 1.3 @@ -0,0 +1,11 @@ 1.4 +#ifndef RT_H_ 1.5 +#define RT_H_ 1.6 + 1.7 +#include "geomobj.h" 1.8 +#include "color.h" 1.9 +#include "scene.h" 1.10 + 1.11 +Color ray_trace(const Ray &ray, const Scene *scn, int iter); 1.12 +Color shade(const RayHit &hit, int iter); 1.13 + 1.14 +#endif // RT_H_