erebus

view liberebus/src/rt.h @ 7:f067148b3494

always recursively make liberebus to correctly build erebus when the lib is out of date
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 24 May 2014 02:27:08 +0300
parents
children e2d9bf168a41
line source
1 #ifndef RT_H_
2 #define RT_H_
4 #include "geomobj.h"
5 #include "color.h"
6 #include "scene.h"
8 Color ray_trace(const Ray &ray, const Scene *scn, int iter);
9 Color shade(const RayHit &hit, int iter);
11 #endif // RT_H_