diff options
Diffstat (limited to 'Cuboid.h')
-rw-r--r-- | Cuboid.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -2,9 +2,7 @@ #define _CUBOID_H_ #include "Triangle.h" -#include "Matrix.h" -#include <iostream> #include <list> class Cuboid
@@ -21,7 +19,7 @@ class Cuboid float getPosZ();
void setSize(float w, float h, float d);
void setPos(float x, float y, float z);
- std::list<Triangle> getTriangles(const Matrix &modelview);
+ std::list<Triangle> getTriangles();
private: float width, height, depth;
|