summaryrefslogtreecommitdiffstats
path: root/Cuboid.h
diff options
context:
space:
mode:
authorConstantin Riß <constantin.riss@dre.de>2010-02-07 16:52:50 +0100
committerConstantin Riß <constantin.riss@dre.de>2010-02-07 16:52:50 +0100
commitf53113f02ea5369e50bd33232db3d2b48f64cc1c (patch)
tree5aa4a0a5fb301a9bedd50cc1445c844fb3175210 /Cuboid.h
parentabcf04bac0fe9b7b8358af6ed4e2f11d9bbb0fc8 (diff)
downloadc3d-f53113f02ea5369e50bd33232db3d2b48f64cc1c.tar
c3d-f53113f02ea5369e50bd33232db3d2b48f64cc1c.zip
Cuboid nicht benätigt und NOTNEEDED ordner hinzugefügt und Fehler behoben
Diffstat (limited to 'Cuboid.h')
-rw-r--r--Cuboid.h30
1 files changed, 0 insertions, 30 deletions
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 <list>
-
-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<Triangle> getTriangles();
-
- private:
- float width, height, depth;
- float x, y, z;
-
-};
-#endif /*_CUBOID_H_*/
-