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