diff options
Diffstat (limited to 'include/core/AABB.hpp')
-rw-r--r-- | include/core/AABB.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/core/AABB.hpp b/include/core/AABB.hpp index 41ade0a..bed3f35 100644 --- a/include/core/AABB.hpp +++ b/include/core/AABB.hpp @@ -16,12 +16,10 @@ public: real_t get_area() const; /// get area inline bool has_no_area() const { - return (size.x <= CMP_EPSILON || size.y <= CMP_EPSILON || size.z <= CMP_EPSILON); } inline bool has_no_surface() const { - return (size.x <= CMP_EPSILON && size.y <= CMP_EPSILON && size.z <= CMP_EPSILON); } |