Files
Presentations/EVI - 2017/EVI 21/EVIray/whitted_tracer.hpp
Miguel Angel Astor Romero d60fc66a77 Added presentations from EVI 2017
2017-10-23 15:25:36 -04:00

19 lines
350 B
C++

#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