From f53113f02ea5369e50bd33232db3d2b48f64cc1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20Ri=C3=9F?= Date: Sun, 7 Feb 2010 16:52:50 +0100 Subject: =?UTF-8?q?Cuboid=20nicht=20ben=E4tigt=20und=20NOTNEEDED=20ordner?= =?UTF-8?q?=20hinzugef=FCgt=20und=20Fehler=20behoben?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cuboid.h | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 Cuboid.h (limited to 'Cuboid.h') diff --git a/Cuboid.h b/Cuboid.h deleted file mode 100644 index d1c600d..0000000 --- a/Cuboid.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef _CUBOID_H_ -#define _CUBOID_H_ - -#include "Triangle.h" - -#include - -class Cuboid -{ - public: - Cuboid() : width(0), height(0), depth(0), x(0), y(0), z(0) {} - Cuboid(float width, float height, float depth); - Cuboid(float width, float height, float depth, float x, float y, float z); - float getHeight(); - float getWidth(); - float getDepth(); - float getPosX(); - float getPosY(); - float getPosZ(); - void setSize(float w, float h, float d); - void setPos(float x, float y, float z); - std::list getTriangles(); - - private: - float width, height, depth; - float x, y, z; - -}; -#endif /*_CUBOID_H_*/ - -- cgit v1.2.3