summaryrefslogtreecommitdiffstats
path: root/src/Cuboid.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2017-08-30 16:04:09 +0200
committerGitHub <noreply@github.com>2017-08-30 16:04:09 +0200
commitda0778dfaa6f82634b91cf981710ecc7809529ae (patch)
treea5f8c532a5f0ec50c1a2957395f2941cc070c226 /src/Cuboid.cpp
parentProtocol Spawn Position Should Use LastSentPosition (#3929) (diff)
parentAdd TOLUA_EXPOSITION for readability (diff)
downloadcuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar
cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.gz
cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.bz2
cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.lz
cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.xz
cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.zst
cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.zip
Diffstat (limited to '')
-rw-r--r--src/Cuboid.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/Cuboid.cpp b/src/Cuboid.cpp
index c638eb636..7dc39f364 100644
--- a/src/Cuboid.cpp
+++ b/src/Cuboid.cpp
@@ -10,14 +10,6 @@
////////////////////////////////////////////////////////////////////////////////
// cCuboid:
-cCuboid & cCuboid::operator =(cCuboid a_Other)
-{
- std::swap(p1, a_Other.p1);
- std::swap(p2, a_Other.p2);
- return *this;
-}
-
-
void cCuboid::Assign(int a_X1, int a_Y1, int a_Z1, int a_X2, int a_Y2, int a_Z2)
{
p1.x = a_X1;
@@ -32,20 +24,6 @@ void cCuboid::Assign(int a_X1, int a_Y1, int a_Z1, int a_X2, int a_Y2, int a_Z2)
-void cCuboid::Assign(const cCuboid & a_SrcCuboid)
-{
- p1.x = a_SrcCuboid.p1.x;
- p1.y = a_SrcCuboid.p1.y;
- p1.z = a_SrcCuboid.p1.z;
- p2.x = a_SrcCuboid.p2.x;
- p2.y = a_SrcCuboid.p2.y;
- p2.z = a_SrcCuboid.p2.z;
-}
-
-
-
-
-
void cCuboid::Sort(void)
{
if (p1.x > p2.x)