diff options
Diffstat (limited to 'Cuboid.h')
-rw-r--r-- | Cuboid.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -10,6 +10,7 @@ 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();
|