From f0e3a4bac77c78fec5f9eb51d9bd7dcf8b1db3b0 Mon Sep 17 00:00:00 2001 From: jgv Date: Thu, 2 Jul 2015 13:46:39 +0300 Subject: [PATCH] 0026332: BRepOffsetAPI_ThruSections algorithm fails on two wires with different number of edges Correction according to remark. Correction of mistake. Test case for issue CR26332 --- src/BRepFill/BRepFill_CompatibleWires.cxx | 38 +++++++++++++++++++++-- tests/bugs/modalg_6/bug26332 | 16 ++++++++++ 2 files changed, 51 insertions(+), 3 deletions(-) create mode 100644 tests/bugs/modalg_6/bug26332 diff --git a/src/BRepFill/BRepFill_CompatibleWires.cxx b/src/BRepFill/BRepFill_CompatibleWires.cxx index d3b24ba59c..6065333574 100644 --- a/src/BRepFill/BRepFill_CompatibleWires.cxx +++ b/src/BRepFill/BRepFill_CompatibleWires.cxx @@ -60,6 +60,7 @@ #include #include +#include #include #include @@ -1248,10 +1249,12 @@ void BRepFill_CompatibleWires::SameNumberByACR(const Standard_Boolean report) if (report || nbminnbdec) break; } - if (dec(k-1)+tol=k;l--) { dec(l+1)=dec(l); } @@ -1293,10 +1297,38 @@ void BRepFill_CompatibleWires::SameNumberByACR(const Standard_Boolean report) dec2(k) = dec(k); } + //Check of cuts: are all the new edges long enouph or not + TColStd_MapOfInteger CutsToRemove; + for (k = 1; k <= nbdec; k++) + { + Standard_Real Knot1 = dec2(k); + Standard_Real Knot2 = (k == nbdec)? 1. : dec2(k+1); + Standard_Real AllLengthsNull = Standard_True; + for (i = 1; i <= nbSects; i++) + { + Standard_Real EdgeLen = (Knot2 - Knot1) * WireLen(i); + if (EdgeLen > Precision::Confusion()) + { + AllLengthsNull = Standard_False; + break; + } + } + if (AllLengthsNull) + CutsToRemove.Add(k); + } + Standard_Integer NewNbDec = nbdec - CutsToRemove.Extent(); + TColStd_Array1OfReal dec3(1, NewNbDec); + i = 1; + for (k = 1; k <= nbdec; k++) + if (!CutsToRemove.Contains(k)) + dec3(i++) = dec2(k); + /////////////////// + // insertion of cuts in each wire for (i=1; i<=nbSects; i++) { const TopoDS_Wire& oldwire = TopoDS::Wire(myWork(i)); - TopoDS_Wire newwire = BRepFill::InsertACR(oldwire, dec2, tol); + Standard_Real tol = Precision::Confusion() / WireLen(i); + TopoDS_Wire newwire = BRepFill::InsertACR(oldwire, dec3, tol); BRepTools_WireExplorer anExp1,anExp2; anExp1.Init(oldwire); anExp2.Init(newwire); diff --git a/tests/bugs/modalg_6/bug26332 b/tests/bugs/modalg_6/bug26332 new file mode 100644 index 0000000000..c6d5b4b3d2 --- /dev/null +++ b/tests/bugs/modalg_6/bug26332 @@ -0,0 +1,16 @@ +puts "==========" +puts "OCC26332" +puts "==========" +puts "" +############################################################ +# BRepOffsetAPI_ThruSections algorithm fails on two wires with different number of edges +############################################################ + +restore [locate_data_file bug26332_w1.brep] w1 +restore [locate_data_file bug26332_w2.brep] w2 + +thrusections result 0 1 w1 w2 + +checkshape result + +set 3dviewer 1