From 6bd81e300f117de21a7ea73ebf847c7f927e7d75 Mon Sep 17 00:00:00 2001 From: jonschz Date: Tue, 17 Jun 2025 20:04:19 +0200 Subject: [PATCH] Add BoundingBox and BoundingSphere matches --- LEGO1/realtime/roi.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/LEGO1/realtime/roi.h b/LEGO1/realtime/roi.h index 87cbe8f1..3013450a 100644 --- a/LEGO1/realtime/roi.h +++ b/LEGO1/realtime/roi.h @@ -15,8 +15,12 @@ // SIZE 0x28 class BoundingBox { public: + // The BETA10 matches may reference the wrong version + + // FUNCTION: BETA10 0x1004a7a0 const Vector3& Min() const { return min; } Vector3& Min() { return min; } + // FUNCTION: BETA10 0x1004a7c0 const Vector3& Max() const { return max; } Vector3& Max() { return max; } @@ -31,9 +35,15 @@ class BoundingBox { // SIZE 0x18 class BoundingSphere { public: + // The BETA10 matches may reference the wrong version + + // FUNCTION: BETA10 0x1001fac0 const Vector3& Center() const { return center; } + // FUNCTION: BETA10 0x100d55a0 Vector3& Center() { return center; } + // FUNCTION: BETA10 0x1001fd30 const float& Radius() const { return radius; } + // FUNCTION: BETA10 0x1001fae0 float& Radius() { return radius; } // SYNTHETIC: BETA10 0x1001fb90