From 77bb8d19a7e541946aa29ab8ef4438890a86f00c Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 10 Dec 2009 22:21:32 +0100 Subject: =?UTF-8?q?Farben=20in=20leeren=20Konstruktoren=20auf=20Wei=C3=9F?= =?UTF-8?q?=20initialisieren?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Trapezocube.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Trapezocube.h') diff --git a/Trapezocube.h b/Trapezocube.h index 3c2aa71..5bcaad1 100644 --- a/Trapezocube.h +++ b/Trapezocube.h @@ -8,7 +8,7 @@ class Trapezocube { public: - Trapezocube(): widthfront(0), widthback(0), height(0), depth(0), x(0), y(0), z(0), rotate(0) {} + Trapezocube(): widthfront(0), widthback(0), height(0), depth(0), x(0), y(0), z(0), rotate(0), color(vmml::vec4f::ONE) {} Trapezocube(float widthfront, float widthback, float height, float depth, float x, float y, float z, float rotate, const vmml::vec4f &col) { @@ -25,7 +25,7 @@ class Trapezocube float getPosY() {return y;} float getPosZ() {return z;} float getRotate() {return rotate;} - vmml::vec4f getColor() {return color;} + const vmml::vec4f& getColor() {return color;} void setSize(float wf, float wb, float h, float d) { -- cgit v1.2.3