From a552a72514d70a4d9157105f6769fe23cf7ac0ba Mon Sep 17 00:00:00 2001 From: oan Date: Thu, 30 Jan 2025 15:35:15 +0000 Subject: [PATCH] 0033866: Foundation Classes - BVH::SurfaceCalculator::Area() fails to calculate area of transformed box Use absolute values of intermediate calculations to compute surface area of a box, so they do not diminish each other. --- src/BVH/BVH_Box.hxx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/BVH/BVH_Box.hxx b/src/BVH/BVH_Box.hxx index 6f808d31f5..85e18a4013 100644 --- a/src/BVH/BVH_Box.hxx +++ b/src/BVH/BVH_Box.hxx @@ -427,11 +427,11 @@ struct SurfaceCalculator { static T Area(const typename BVH_Box::BVH_VecNt& theSize) { - const T anArea = theSize.x() * theSize.y(); + const T anArea = std::abs (theSize.x() * theSize.y()); if (anArea < std::numeric_limits::epsilon()) { - return theSize.x() + theSize.y(); + return std::abs (theSize.x()) + std::abs (theSize.y()); } return anArea; @@ -444,12 +444,14 @@ struct SurfaceCalculator static T Area(const typename BVH_Box::BVH_VecNt& theSize) { const T anArea = - (theSize.x() * theSize.y() + theSize.x() * theSize.z() + theSize.z() * theSize.y()) + (std::abs (theSize.x() * theSize.y()) + + std::abs (theSize.x() * theSize.z()) + + std::abs (theSize.z() * theSize.y())) * static_cast(2.0); if (anArea < std::numeric_limits::epsilon()) { - return theSize.x() + theSize.y() + theSize.z(); + return std::abs (theSize.x()) + std::abs (theSize.y()) + std::abs (theSize.z()); } return anArea; @@ -462,12 +464,14 @@ struct SurfaceCalculator static T Area(const typename BVH_Box::BVH_VecNt& theSize) { const T anArea = - (theSize.x() * theSize.y() + theSize.x() * theSize.z() + theSize.z() * theSize.y()) + (std::abs (theSize.x() * theSize.y()) + + std::abs (theSize.x() * theSize.z()) + + std::abs (theSize.z() * theSize.y())) * static_cast(2.0); if (anArea < std::numeric_limits::epsilon()) { - return theSize.x() + theSize.y() + theSize.z(); + return std::abs (theSize.x()) + std::abs (theSize.y()) + std::abs (theSize.z()); } return anArea;