From 0bb09048e2f4259d4a1b8230c3af7e604a2e90b9 Mon Sep 17 00:00:00 2001 From: vpa Date: Wed, 28 Jan 2015 12:21:58 +0300 Subject: [PATCH] 0025679: Visualization, TKOpenGl - View frustum culling clips wrong objects Corrected area calculation for degenerated AABBs in BVH_Box; Test case for issue 25679. --- src/BVH/BVH_Box.hxx | 42 ++++++++++++++++++++++++++++++++++------- tests/bugs/vis/bug25679 | 38 +++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 7 deletions(-) create mode 100644 tests/bugs/vis/bug25679 diff --git a/src/BVH/BVH_Box.hxx b/src/BVH/BVH_Box.hxx index 95c2d7c108..838fb90352 100644 --- a/src/BVH/BVH_Box.hxx +++ b/src/BVH/BVH_Box.hxx @@ -18,6 +18,8 @@ #include +#include + //! Defines axis aligned bounding box (AABB) based on BVH vectors. //! \tparam T Numeric data type //! \tparam N Vector dimension @@ -79,6 +81,7 @@ public: BVH_VecNt& CornerMax(); //! Returns surface area of bounding box. + //! If the box is degenerated into line, returns the perimeter instead. T Area() const; //! Returns diagonal of bounding box. @@ -182,7 +185,14 @@ namespace BVH { static T Area (const typename BVH_Box::BVH_VecNt& theSize) { - return theSize.x() * theSize.y(); + const T anArea = theSize.x() * theSize.y(); + + if (anArea < std::numeric_limits::epsilon()) + { + return theSize.x() + theSize.y(); + } + + return anArea; } }; @@ -191,9 +201,18 @@ namespace BVH { static T Area (const typename BVH_Box::BVH_VecNt& theSize) { - return ( theSize.x() * theSize.y() + - theSize.x() * theSize.z() + - theSize.z() * theSize.y() ) * static_cast (2.0); + const T anArea = ( theSize.x() * theSize.y() + + theSize.x() * theSize.z() + + theSize.z() * theSize.y() ) * static_cast (2.0); + + if (anArea < std::numeric_limits::epsilon()) + { + return theSize.x() + + theSize.y() + + theSize.z(); + } + + return anArea; } }; @@ -202,9 +221,18 @@ namespace BVH { static T Area (const typename BVH_Box::BVH_VecNt& theSize) { - return ( theSize.x() * theSize.y() + - theSize.x() * theSize.z() + - theSize.z() * theSize.y() ) * static_cast (2.0); + const T anArea = ( theSize.x() * theSize.y() + + theSize.x() * theSize.z() + + theSize.z() * theSize.y() ) * static_cast (2.0); + + if (anArea < std::numeric_limits::epsilon()) + { + return theSize.x() + + theSize.y() + + theSize.z(); + } + + return anArea; } }; diff --git a/tests/bugs/vis/bug25679 b/tests/bugs/vis/bug25679 new file mode 100644 index 0000000000..591c650cc0 --- /dev/null +++ b/tests/bugs/vis/bug25679 @@ -0,0 +1,38 @@ +puts "========" +puts "OCC25679" +puts "========" +puts "" +############################################################################ +# Visualization, TKOpenGl - View frustum culling clips wrong objects +############################################################################ + +pload VISUALIZATION MODELING + +set LINES_IN_ROW 50 + +set aNoCulling $imagedir/${casename}_without.png +set aWithCulling $imagedir/${casename}_with.png +set aDiff $imagedir/${casename}_diff.png + +vinit + +for {set i 0} {$i < $LINES_IN_ROW} {incr i} { + for {set j 0} {$j < $LINES_IN_ROW} {incr j} { + set aLineName "line" + append aLineName [expr $i * $LINES_IN_ROW + $j] + vline $aLineName 0 0 0 1 0 0 + vsetlocation $aLineName [expr $i * 3] [expr $j * 3] 0 + } +} + +vfit + +vfrustumculling 1 +vdump $aWithCulling +vfrustumculling 0 +vdump $aNoCulling + +set aDiffRes [diffimage $aWithCulling $aNoCulling 0.1 0 0 $aDiff] +if {$aDiffRes != 0} { + puts "ERROR : Test failed: there is a difference between images rendered with and without frustum culling" +}