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))