diff options
author | peterbell10 <peterbell10@live.co.uk> | 2019-08-08 20:49:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-08 20:49:00 +0200 |
commit | a2547bf1fe447dd7197791803b64ef085a1b4a1a (patch) | |
tree | ff10cd49581e3a76fd358fcd431ab030dab5ba88 /src/BoundingBox.cpp | |
parent | Change TakeDamageInfo::FinalDamage from int to float (#4359) (diff) | |
download | cuberite-a2547bf1fe447dd7197791803b64ef085a1b4a1a.tar cuberite-a2547bf1fe447dd7197791803b64ef085a1b4a1a.tar.gz cuberite-a2547bf1fe447dd7197791803b64ef085a1b4a1a.tar.bz2 cuberite-a2547bf1fe447dd7197791803b64ef085a1b4a1a.tar.lz cuberite-a2547bf1fe447dd7197791803b64ef085a1b4a1a.tar.xz cuberite-a2547bf1fe447dd7197791803b64ef085a1b4a1a.tar.zst cuberite-a2547bf1fe447dd7197791803b64ef085a1b4a1a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BoundingBox.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/BoundingBox.cpp b/src/BoundingBox.cpp index bc4926011..48ed42789 100644 --- a/src/BoundingBox.cpp +++ b/src/BoundingBox.cpp @@ -59,27 +59,6 @@ cBoundingBox::cBoundingBox(Vector3d a_Pos, double a_CubeLength) : -cBoundingBox::cBoundingBox(const cBoundingBox & a_Orig) : - m_Min(a_Orig.m_Min), - m_Max(a_Orig.m_Max) -{ -} - - - - - -cBoundingBox & cBoundingBox::operator=(const cBoundingBox & a_Other) -{ - m_Min = a_Other.m_Min; - m_Max = a_Other.m_Max; - return *this; -} - - - - - void cBoundingBox::Move(double a_OffX, double a_OffY, double a_OffZ) { m_Min.x += a_OffX; |