From 687de91a813d2a872bd25f9bf13a88a2ae982521 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 13 Jul 2014 20:12:10 -0700 Subject: [PATCH] Quick 'n dirty setters for height and width --- src/scene.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/scene.h b/src/scene.h index 3ac4007..1738e43 100644 --- a/src/scene.h +++ b/src/scene.h @@ -30,7 +30,9 @@ public: bool is_rendered() const; int get_width() const; + void set_width(int w) { width = w; } int get_height() const; + void set_height(int h) { height = h; } AmbientLight &get_ambient() const; const Color *get_pixels() const;