Added camera abstraction.

This commit is contained in:
Miguel Angel Astor Romero
2017-01-12 17:23:11 -04:00
parent 991d339b65
commit 724a98f8a0
12 changed files with 215 additions and 93 deletions

View File

@@ -8,7 +8,7 @@ class PathTracer: public Tracer {
public:
PathTracer(): Tracer() { }
PathTracer(int h, int w, float fov, unsigned int max_depth): Tracer(h, w, fov, max_depth) { };
PathTracer(unsigned int max_depth): Tracer(max_depth) { };
virtual ~PathTracer();