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/Vector3d.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/Vector3d.cpp')
-rw-r--r-- | src/Vector3d.cpp | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/src/Vector3d.cpp b/src/Vector3d.cpp deleted file mode 100644 index 96ebebab5..000000000 --- a/src/Vector3d.cpp +++ /dev/null @@ -1,77 +0,0 @@ - -#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules - -#include "Vector3d.h" -#include "Vector3f.h" - - - - - -const double Vector3d::EPS = 0.000001; ///< The max difference between two coords for which the coords are assumed equal -const double Vector3d::NO_INTERSECTION = 1e70; ///< Return value of LineCoeffToPlane() if the line is parallel to the plane - - - - - -Vector3d::Vector3d(const Vector3f & v) : - x(v.x), - y(v.y), - z(v.z) -{ -} - - - - - -Vector3d::Vector3d(const Vector3f * v) : - x(v->x), - y(v->y), - z(v->z) -{ -} - - - - - -double Vector3d::LineCoeffToXYPlane(const Vector3d & a_OtherEnd, double a_Z) const -{ - if (abs(z - a_OtherEnd.z) < EPS) - { - return NO_INTERSECTION; - } - return (a_Z - z) / (a_OtherEnd.z - z); -} - - - - - -double Vector3d::LineCoeffToXZPlane(const Vector3d & a_OtherEnd, double a_Y) const -{ - if (abs(y - a_OtherEnd.y) < EPS) - { - return NO_INTERSECTION; - } - return (a_Y - y) / (a_OtherEnd.y - y); -} - - - - - -double Vector3d::LineCoeffToYZPlane(const Vector3d & a_OtherEnd, double a_X) const -{ - if (abs(x - a_OtherEnd.x) < EPS) - { - return NO_INTERSECTION; - } - return (a_X - x) / (a_OtherEnd.x - x); -} - - - - |