diff options
author | andrew <xdotftw@gmail.com> | 2014-03-11 15:01:17 +0100 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-03-11 15:02:25 +0100 |
commit | b4bf13aa4f004a7819e262679a295d8ca886557b (patch) | |
tree | 8c1b0d89d4c23c78dd65899d4a2c2c31bde869a5 /src/Vector3i.cpp | |
parent | Merge pull request #791 from mc-server/PieceGenerator (diff) | |
download | cuberite-b4bf13aa4f004a7819e262679a295d8ca886557b.tar cuberite-b4bf13aa4f004a7819e262679a295d8ca886557b.tar.gz cuberite-b4bf13aa4f004a7819e262679a295d8ca886557b.tar.bz2 cuberite-b4bf13aa4f004a7819e262679a295d8ca886557b.tar.lz cuberite-b4bf13aa4f004a7819e262679a295d8ca886557b.tar.xz cuberite-b4bf13aa4f004a7819e262679a295d8ca886557b.tar.zst cuberite-b4bf13aa4f004a7819e262679a295d8ca886557b.zip |
Diffstat (limited to 'src/Vector3i.cpp')
-rw-r--r-- | src/Vector3i.cpp | 58 |
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; -} - - - - |