Files
PhotonMF/path_tracer.hpp

19 lines
380 B
C++
Raw Normal View History

2017-01-05 17:59:04 -04:00
#pragma once
#ifndef PATH_TRACER_HPP
#define PATH_TRACER_HPP
#include "tracer.hpp"
class PathTracer: public Tracer {
public:
PathTracer(): Tracer() { }
2017-01-05 17:59:04 -04:00
PathTracer(int h, int w, float fov): Tracer(h, w, fov) { };
2017-01-05 17:59:04 -04:00
virtual ~PathTracer();
virtual vec3 trace_ray(Ray & r, vector<Figure *> & v_figures, vector<Light *> & v_lights, unsigned int rec_level) const;
};
#endif