aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/boundingbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/bladerunner/boundingbox.cpp')
-rw-r--r--engines/bladerunner/boundingbox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/bladerunner/boundingbox.cpp b/engines/bladerunner/boundingbox.cpp
index 029442668f..f7e7eca190 100644
--- a/engines/bladerunner/boundingbox.cpp
+++ b/engines/bladerunner/boundingbox.cpp
@@ -44,7 +44,7 @@ void BoundingBox::expand(float x0, float y0, float z0, float x1, float y1, float
_vertices[1].z += z1;
}
-bool BoundingBox::inside(float x, float y, float z) {
+bool BoundingBox::inside(float x, float y, float z) const {
return x >= _vertices[0].x && x <= _vertices[1].x
&& y >= _vertices[0].y && y <= _vertices[1].y
&& z >= _vertices[0].z && z <= _vertices[1].z;
@@ -60,7 +60,7 @@ void BoundingBox::setXYZ(float x0, float y0, float z0, float x1, float y1, float
_vertices[1].z = z1;
}
-void BoundingBox::getXYZ(float *x0, float *y0, float *z0, float *x1, float *y1, float *z1) {
+void BoundingBox::getXYZ(float *x0, float *y0, float *z0, float *x1, float *y1, float *z1) const {
*x0 = _vertices[0].x;
*y0 = _vertices[0].y;
*z0 = _vertices[0].z;
@@ -70,11 +70,11 @@ void BoundingBox::getXYZ(float *x0, float *y0, float *z0, float *x1, float *y1,
*z1 = _vertices[1].z;
}
-float BoundingBox::getZ0() {
+float BoundingBox::getZ0() const {
return _vertices[0].z;
}
-float BoundingBox::getZ1() {
+float BoundingBox::getZ1() const {
return _vertices[1].z;
}