summaryrefslogtreecommitdiff
path: root/src/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vector.h')
-rw-r--r--src/vector.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/vector.h b/src/vector.h
index 163dcdbd..3360c20b 100644
--- a/src/vector.h
+++ b/src/vector.h
@@ -33,27 +33,18 @@
class Vector
{
public:
- /**
- * Constructor.
- */
Vector():
x(0.0f),
y(0.0f),
z(0.0f)
{}
- /**
- * Constructor.
- */
Vector(float x, float y, float z = 0.0f):
x(x),
y(y),
z(z)
{}
- /**
- * Copy constructor.
- */
Vector(const Vector &v):
x(v.x),
y(v.y),