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/Vector3f.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/Vector3f.cpp')
-rw-r--r-- | src/Vector3f.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/Vector3f.cpp b/src/Vector3f.cpp deleted file mode 100644 index 59d71d371..000000000 --- a/src/Vector3f.cpp +++ /dev/null @@ -1,34 +0,0 @@ - -#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules - -#include "Vector3f.h" -#include "Vector3d.h" -#include "Vector3i.h" - -Vector3f::Vector3f( const Vector3d & v ) - : x( (float)v.x ) - , y( (float)v.y ) - , z( (float)v.z ) -{ -} - -Vector3f::Vector3f( const Vector3d * v ) - : x( (float)v->x ) - , y( (float)v->y ) - , z( (float)v->z ) -{ -} - -Vector3f::Vector3f( const Vector3i & v ) - : x( (float)v.x ) - , y( (float)v.y ) - , z( (float)v.z ) -{ -} - -Vector3f::Vector3f( const Vector3i * v ) - : x( (float)v->x ) - , y( (float)v->y ) - , z( (float)v->z ) -{ -}
\ No newline at end of file |