Added presentations from EVI 2017

This commit is contained in:
Miguel Angel Astor Romero
2017-10-23 15:25:36 -04:00
parent 68ae52b86a
commit d60fc66a77
52 changed files with 3409 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#ifndef WHITTED_TRACER_HPP
#define WHITTED_TRACER_HPP
#include "tracer.hpp"
class WhittedTracer: public Tracer {
public:
WhittedTracer(): Tracer() { }
WhittedTracer(unsigned int max_depth): Tracer(max_depth) { };
virtual ~WhittedTracer();
virtual vec3 trace_ray(Ray & r, Scene * s, unsigned int rec_level) const;
};
#endif