diff options
author | Karroffel <therzog@mail.de> | 2017-07-23 17:53:50 +0200 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-07-23 17:53:50 +0200 |
commit | 4769f49cb4b9465ec27ff076e1cf97286cd13453 (patch) | |
tree | 1da8dbf14f072f634d7fddac70dff25998d60818 /src | |
parent | 606d2624af00d58da1c3dff0e25c55099459a973 (diff) | |
download | redot-cpp-4769f49cb4b9465ec27ff076e1cf97286cd13453.tar.gz |
Use static linking instead of dynamic linking
Diffstat (limited to 'src')
-rw-r--r-- | src/core/Vector3.cpp | 7 |
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]; |