From 327f92f8d668da57febe51b84e52667c241d4ba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20Ri=C3=9F?= Date: Thu, 10 Dec 2009 21:43:38 +0100 Subject: =?UTF-8?q?Gr=C3=B6=C3=9Fen=20bei=20Cubehole=20verbessert/richtig?= =?UTF-8?q?=20eingestellt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cubehole.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'Cubehole.h') diff --git a/Cubehole.h b/Cubehole.h index c8e8736..a31fae9 100644 --- a/Cubehole.h +++ b/Cubehole.h @@ -24,12 +24,12 @@ class Cubehole left.setRotate(270); } - float getHeight(); - float getWidth(); - float getDepth(); - float getPosX(); - float getPosY(); - float getPosZ(); + float getHeight() {return height;} + float getWidth() {return width;} + float getDepth() {return depth;} + float getPosX() {return x;} + float getPosY() {return y;} + float getPosZ() {return z;} float getInnerWidth() {return innerwidth;} float getInnerDepth() {return innerdepth;} @@ -41,11 +41,10 @@ class Cubehole innerwidth = iw; innerdepth = id; front.setSize(width, innerwidth, height, (depth-innerdepth)/2); - right.setSize(width, innerdepth, height, (width-innerwidth)/2); + right.setSize(depth, innerdepth, height, (width-innerwidth)/2); back.setSize(width, innerwidth, height, (depth-innerdepth)/2); - left.setSize(width, innerdepth, height, (width-innerwidth)/2); + left.setSize(depth, innerdepth, height, (width-innerwidth)/2); } - void setPos(float x0, float y0, float z0) { x = x0; y = y0; @@ -55,7 +54,6 @@ class Cubehole back.setPos(x, y, depth-(depth-innerdepth)/2); left.setPos(x, y, width-(width-innerwidth)/2); } - void setColor(const vmml::vec4f &cf, const vmml::vec4f &cr, const vmml::vec4f &cb, const vmml::vec4f &cl) { front.setColor(cf); right.setColor(cr); -- cgit v1.2.3