summaryrefslogtreecommitdiffstats
path: root/src/Vector3f.cpp
diff options
context:
space:
mode:
authorandrew <xdotftw@gmail.com>2014-03-11 15:01:17 +0100
committerandrew <xdotftw@gmail.com>2014-03-11 15:02:25 +0100
commitb4bf13aa4f004a7819e262679a295d8ca886557b (patch)
tree8c1b0d89d4c23c78dd65899d4a2c2c31bde869a5 /src/Vector3f.cpp
parentMerge pull request #791 from mc-server/PieceGenerator (diff)
downloadcuberite-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.cpp34
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