From 2bdfdc90ccb7c67a0deb3fb127bb94969d58f2da Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 25 Oct 2021 19:39:18 -0400 Subject: [PATCH] Fix disjoint --- include/common/aabb.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/aabb.hh b/include/common/aabb.hh index 2cb10813..a6b341e4 100644 --- a/include/common/aabb.hh +++ b/include/common/aabb.hh @@ -88,7 +88,7 @@ public: constexpr aabb translate(const value_type &vec) const { return {m_mins + vec, m_maxs + vec}; } template - constexpr bool disjoint(const aabb &other, const F &epsilon = 0) const + constexpr bool disjoint(const aabb &other, const F &epsilon = 0) const { for (size_t i = 0; i < N; i++) { if (m_maxs[i] < (other.m_mins[i] - epsilon))