summaryrefslogtreecommitdiff
path: root/src/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vector.h')
-rw-r--r--src/vector.h24
1 files changed, 4 insertions, 20 deletions
diff --git a/src/vector.h b/src/vector.h
index 9ff98aa1..5d7d63d7 100644
--- a/src/vector.h
+++ b/src/vector.h
@@ -33,11 +33,7 @@
class Vector
{
public:
- Vector():
- x(0.0f),
- y(0.0f),
- z(0.0f)
- {}
+ Vector() = default;
Vector(float x, float y, float z = 0.0f):
x(x),
@@ -45,12 +41,6 @@ class Vector
z(z)
{}
- Vector(const Vector &v):
- x(v.x),
- y(v.y),
- z(v.z)
- {}
-
/**
* Returns true if all coordinates are set to 0, otherwise returns
* false.
@@ -60,14 +50,6 @@ class Vector
return x == 0.0f && y == 0.0f && z == 0.0f;
}
- Vector &operator=(const Vector &v)
- {
- x = v.x;
- y = v.y;
- z = v.z;
- return *this;
- }
-
/**
* Scale vector operator.
*/
@@ -187,7 +169,9 @@ class Vector
return Vector(x / l, y / l, z / l);
}
- float x, y, z;
+ float x = 0.0f;
+ float y = 0.0f;
+ float z = 0.0f;
};
inline bool operator == (const Vector &a, const Vector &b)