summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-09-03 16:56:59 +0200
committermadmaxoft <github@xoft.cz>2014-09-03 16:56:59 +0200
commit9eb07f483a237f3fba21a761e7a19053032d2282 (patch)
tree244892d86f4b2f875fa784cb07e2d586657481a3
parentClang wants volatile... (diff)
downloadcuberite-9eb07f483a237f3fba21a761e7a19053032d2282.tar
cuberite-9eb07f483a237f3fba21a761e7a19053032d2282.tar.gz
cuberite-9eb07f483a237f3fba21a761e7a19053032d2282.tar.bz2
cuberite-9eb07f483a237f3fba21a761e7a19053032d2282.tar.lz
cuberite-9eb07f483a237f3fba21a761e7a19053032d2282.tar.xz
cuberite-9eb07f483a237f3fba21a761e7a19053032d2282.tar.zst
cuberite-9eb07f483a237f3fba21a761e7a19053032d2282.zip
-rw-r--r--src/BoundingBox.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/BoundingBox.h b/src/BoundingBox.h
index 793466302..928e62afa 100644
--- a/src/BoundingBox.h
+++ b/src/BoundingBox.h
@@ -80,6 +80,17 @@ public:
/// Calculates the intersection of the two bounding boxes; returns true if nonempty
bool Intersect(const cBoundingBox & a_Other, cBoundingBox & a_Intersection);
+ double GetMinX(void) const { return m_Min.x; }
+ double GetMinY(void) const { return m_Min.y; }
+ double GetMinZ(void) const { return m_Min.z; }
+
+ double GetMaxX(void) const { return m_Max.x; }
+ double GetMaxY(void) const { return m_Max.y; }
+ double GetMaxZ(void) const { return m_Max.z; }
+
+ const Vector3d & GetMin(void) const { return m_Min; }
+ const Vector3d & GetMax(void) const { return m_Max; }
+
protected:
Vector3d m_Min;
Vector3d m_Max;