From 52a93a3bddc3a7ddd962831a143560bae3eb0899 Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry Date: Mon, 31 Mar 2025 10:01:23 +0100 Subject: [PATCH] Modeling - Handle void bounding box case in BRepBndLib::AddOptimal #470 In some cases face without natural bound can be not have edges on curve --- .../TKTopAlgo/BRepBndLib/BRepBndLib.cxx | 9 +++++++-- tests/bugs/modalg_8/bug_gh469 | 10 ++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 tests/bugs/modalg_8/bug_gh469 diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.cxx index dd32326524..62314e1021 100644 --- a/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.cxx +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.cxx @@ -619,8 +619,13 @@ void FindExactUVBounds(const TopoDS_Face& FF, BndLib_Add2dCurve::AddOptimal(aC2D, aT1, aT2, TolUV, aBox); // } - // - aBox.Get(umin, vmin, umax, vmax); + + // In some cases no edges are found + if (!aBox.IsVoid()) + { + aBox.Get(umin, vmin, umax, vmax); + } + // TopLoc_Location aLoc; Handle(Geom_Surface) aS = BRep_Tool::Surface(FF, aLoc); diff --git a/tests/bugs/modalg_8/bug_gh469 b/tests/bugs/modalg_8/bug_gh469 new file mode 100644 index 0000000000..b40cc2120d --- /dev/null +++ b/tests/bugs/modalg_8/bug_gh469 @@ -0,0 +1,10 @@ +puts "=========================================================================" +puts "GH469: Bounding box is void when using BRepBndLib::AddOptimal" +puts "=========================================================================" +puts "" + +pload QAcommands + +restore [locate_data_file bug_gh469.brep] result + +bounding result -optimal