From 6672e443a870963354ee43298c75164d382a5636 Mon Sep 17 00:00:00 2001 From: Peter Kohaut Date: Sun, 13 Sep 2015 01:48:13 +0200 Subject: BLADERUNNER: just basic objects description scene stuff - lightning and effects movement track actor clues db actor walking info moved view from vqa decoder, because its needed elsewhere does not compile, because new files are not in makefile... --- engines/bladerunner/boundingbox.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'engines/bladerunner/boundingbox.h') diff --git a/engines/bladerunner/boundingbox.h b/engines/bladerunner/boundingbox.h index 5dda3f0e3f..1766973f26 100644 --- a/engines/bladerunner/boundingbox.h +++ b/engines/bladerunner/boundingbox.h @@ -28,11 +28,15 @@ namespace BladeRunner { class BoundingBox { +public: Vector3 _vertices[2]; public: BoundingBox() {} BoundingBox(float x0, float y0, float z0, float x1, float y1, float z1); + + void expand(float x0, float y0, float z0, float x1, float y1, float z1); + bool isXYZInside(float x, float y, float z); }; } // End of namespace BladeRunner -- cgit v1.2.3