summaryrefslogtreecommitdiffstats
path: root/src/Vector3i.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-12 14:42:04 +0100
committermadmaxoft <github@xoft.cz>2014-03-12 14:42:04 +0100
commitf2df33f746936e8dd0dba69e7d77723df8c71472 (patch)
tree9a2a49460ed9cf57f69a2e9b0e07cf9a6086a02a /src/Vector3i.cpp
parentFixed Lua string return values. (diff)
parentVector3: Length() should always return a float (diff)
downloadcuberite-f2df33f746936e8dd0dba69e7d77723df8c71472.tar
cuberite-f2df33f746936e8dd0dba69e7d77723df8c71472.tar.gz
cuberite-f2df33f746936e8dd0dba69e7d77723df8c71472.tar.bz2
cuberite-f2df33f746936e8dd0dba69e7d77723df8c71472.tar.lz
cuberite-f2df33f746936e8dd0dba69e7d77723df8c71472.tar.xz
cuberite-f2df33f746936e8dd0dba69e7d77723df8c71472.tar.zst
cuberite-f2df33f746936e8dd0dba69e7d77723df8c71472.zip
Diffstat (limited to 'src/Vector3i.cpp')
-rw-r--r--src/Vector3i.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/Vector3i.cpp b/src/Vector3i.cpp
deleted file mode 100644
index 2106aea6d..000000000
--- a/src/Vector3i.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-
-// Vector3i.cpp
-
-// Implements the Vector3i class representing an int-based 3D vector
-
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-#include "math.h"
-#include "Vector3i.h"
-#include "Vector3d.h"
-
-
-
-
-
-Vector3i::Vector3i(const Vector3d & v) :
- x((int)v.x),
- y((int)v.y),
- z((int)v.z)
-{
-}
-
-
-
-
-
-Vector3i::Vector3i(void) :
- x(0),
- y(0),
- z(0)
-{
-}
-
-
-
-
-
-Vector3i::Vector3i(int a_x, int a_y, int a_z) :
- x(a_x),
- y(a_y),
- z(a_z)
-{
-}
-
-
-
-
-
-void Vector3i::Move(int a_MoveX, int a_MoveY, int a_MoveZ)
-{
- x += a_MoveX;
- y += a_MoveY;
- z += a_MoveZ;
-}
-
-
-
-