From 1294d5e39ed35dc97b2241956855fe794a03b0d8 Mon Sep 17 00:00:00 2001 From: jgv Date: Tue, 13 Apr 2021 16:03:21 +0300 Subject: [PATCH] 0031984: Modeling Algorithms - Sweep crashes if Bi-normal is given Small modification in BRepFill_Sweep: to avoid exception, return status NotDone if construction of pipe surface fails. --- src/BRepFill/BRepFill_Sweep.cxx | 18 +++++++++++++++--- tests/bugs/modalg_7/bug31984 | 12 ++++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 tests/bugs/modalg_7/bug31984 diff --git a/src/BRepFill/BRepFill_Sweep.cxx b/src/BRepFill/BRepFill_Sweep.cxx index 8970c4bba3..1eba8dbcb5 100644 --- a/src/BRepFill/BRepFill_Sweep.cxx +++ b/src/BRepFill/BRepFill_Sweep.cxx @@ -2969,13 +2969,25 @@ void BRepFill_Sweep::Build(TopTools_MapOfShape& ReversedEdges, // Construction of the shell TopoDS_Shell shell; B.MakeShell(shell); + Standard_Integer aNbFaces = 0; for (ipath=1; ipath<=NbPath; ipath++) - for (isec=1; isec <=NbLaw; isec++) { - const TopoDS_Shape& face = myFaces->Value(isec, ipath); + for (isec=1; isec <=NbLaw; isec++) + { + const TopoDS_Shape& face = myFaces->Value(isec, ipath); if (!face.IsNull() && - (face.ShapeType() == TopAbs_FACE) ) B.Add(shell, face); + (face.ShapeType() == TopAbs_FACE) ) + { + B.Add(shell, face); + aNbFaces++; + } } + if (aNbFaces == 0) + { + isDone = Standard_False; + return; + } + TopTools_ListIteratorOfListOfShape It(myAuxShape); for (; It.More(); It.Next()) { const TopoDS_Shape& face = It.Value(); diff --git a/tests/bugs/modalg_7/bug31984 b/tests/bugs/modalg_7/bug31984 new file mode 100644 index 0000000000..fa1a5519b4 --- /dev/null +++ b/tests/bugs/modalg_7/bug31984 @@ -0,0 +1,12 @@ +puts "==============================================" +puts " 0031984: Sweep crashes if Bi-normal is given" +puts "==============================================" +puts "" + +restore [locate_data_file bug31984.brep] a +explode a + +mksweep a_1 +addsweep a_2 +setsweep -CN 0 0 1 +buildsweep result