summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/Vector3.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/Vector3.cpp b/src/core/Vector3.cpp
index b73362d..377778a 100644
--- a/src/core/Vector3.cpp
+++ b/src/core/Vector3.cpp
@@ -26,13 +26,6 @@ Vector3::Vector3()
this->z = 0;
}
-Vector3::Vector3(const Vector3& b)
-{
- this->x = b.x;
- this->y = b.y;
- this->z = b.z;
-}
-
const real_t& Vector3::operator[](int p_axis) const
{
return coord[p_axis];