erebus

annotate 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
rev   line source
nuclear@6 1 #ifndef RT_H_
nuclear@6 2 #define RT_H_
nuclear@6 3
nuclear@6 4 #include "geomobj.h"
nuclear@6 5 #include "color.h"
nuclear@6 6 #include "scene.h"
nuclear@6 7
nuclear@6 8 Color ray_trace(const Ray &ray, const Scene *scn, int iter);
nuclear@6 9 Color shade(const RayHit &hit, int iter);
nuclear@6 10
nuclear@6 11 #endif // RT_H_