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.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/bladerunner/boundingbox.cpp b/engines/bladerunner/boundingbox.cpp
index f7e7eca190..a1c79a17e7 100644
--- a/engines/bladerunner/boundingbox.cpp
+++ b/engines/bladerunner/boundingbox.cpp
@@ -50,6 +50,10 @@ bool BoundingBox::inside(float x, float y, float z) const {
&& z >= _vertices[0].z && z <= _vertices[1].z;
}
+bool BoundingBox::inside(Vector3 &position) const {
+ return inside(position.x, position.y, position.z);
+}
+
void BoundingBox::setXYZ(float x0, float y0, float z0, float x1, float y1, float z1) {
_vertices[0].x = x0;
_vertices[0].y = y0;