Better handling of command line arguments.
This commit is contained in:
@@ -6,11 +6,9 @@
|
||||
|
||||
class WhittedTracer: public Tracer {
|
||||
public:
|
||||
bool indirect_l;
|
||||
WhittedTracer(): Tracer() { }
|
||||
|
||||
WhittedTracer(): Tracer(), indirect_l(false) { }
|
||||
|
||||
WhittedTracer(int h, int w, float fov, bool il): Tracer(h, w, fov), indirect_l(il) { };
|
||||
WhittedTracer(int h, int w, float fov): Tracer(h, w, fov) { };
|
||||
|
||||
virtual ~WhittedTracer();
|
||||
|
||||
|
Reference in New Issue
Block a user