diff --git a/src/BRepLib/BRepLib_MakeWire.cxx b/src/BRepLib/BRepLib_MakeWire.cxx index 46f0b4d0f3..949e4b8757 100644 --- a/src/BRepLib/BRepLib_MakeWire.cxx +++ b/src/BRepLib/BRepLib_MakeWire.cxx @@ -131,10 +131,10 @@ BRepLib_MakeWire::BRepLib_MakeWire(const TopoDS_Wire& W, void BRepLib_MakeWire::Add(const TopoDS_Wire& W) { - TopExp_Explorer ex(W,TopAbs_EDGE); - while (ex.More()) { - Add(TopoDS::Edge(ex.Current())); - ex.Next(); + for (TopoDS_Iterator it(W); it.More(); it.Next()) { + Add(TopoDS::Edge(it.Value())); + if (myError != BRepLib_WireDone) + break; } } diff --git a/src/BRepLib/BRepLib_MakeWire.hxx b/src/BRepLib/BRepLib_MakeWire.hxx index fc498cc145..0cf4f27b0a 100644 --- a/src/BRepLib/BRepLib_MakeWire.hxx +++ b/src/BRepLib/BRepLib_MakeWire.hxx @@ -24,10 +24,10 @@ #include #include #include +#include #include #include #include -#include #include #include @@ -172,14 +172,14 @@ private: }; void CollectCoincidentVertices(const TopTools_ListOfShape& theL, - NCollection_List>& theGrVL); + NCollection_List>& theGrVL); void CreateNewVertices(const NCollection_List>& theGrVL, - NCollection_DataMap& theO2NV); + TopTools_DataMapOfShapeShape& theO2NV); void CreateNewListOfEdges(const TopTools_ListOfShape& theL, - const NCollection_DataMap& theO2NV, - TopTools_ListOfShape& theNewEList); + const TopTools_DataMapOfShapeShape& theO2NV, + TopTools_ListOfShape& theNewEList); void Add(const TopoDS_Edge& E, Standard_Boolean IsCheckGeometryProximity); diff --git a/src/BRepLib/BRepLib_MakeWire_1.cxx b/src/BRepLib/BRepLib_MakeWire_1.cxx index 2ddf25997f..b30ed8f183 100644 --- a/src/BRepLib/BRepLib_MakeWire_1.cxx +++ b/src/BRepLib/BRepLib_MakeWire_1.cxx @@ -58,7 +58,7 @@ void BRepLib_MakeWire::Add(const TopTools_ListOfShape& L) CollectCoincidentVertices(L, aGrVL); - NCollection_DataMap anO2NV; + TopTools_DataMapOfShapeShape anO2NV; CreateNewVertices(aGrVL, anO2NV); @@ -188,17 +188,13 @@ void BRepLib_MakeWire::CollectCoincidentVertices(const TopTools_ListOfShape& the NCollection_List>& theGrVL) { TopTools_IndexedMapOfShape anAllV; - TopTools_ListIteratorOfListOfShape anItL; TopTools_IndexedDataMapOfShapeListOfShape aMV2EL; - TopExp::MapShapesAndAncestors(myShape, TopAbs_VERTEX, TopAbs_EDGE, aMV2EL); - TopExp_Explorer exp; - for (anItL.Initialize(theL); anItL.More(); anItL.Next()) - TopExp::MapShapesAndAncestors(anItL.Value(), TopAbs_VERTEX, TopAbs_EDGE, aMV2EL); + TopExp::MapShapes(myShape, TopAbs_VERTEX, anAllV); - for (int i = 1; i <= aMV2EL.Extent(); i++) - if (aMV2EL(i).Extent() == 1) - anAllV.Add(aMV2EL.FindKey(i)); + TopTools_ListIteratorOfListOfShape anItL(theL); + for (; anItL.More(); anItL.Next()) + TopExp::MapShapes(anItL.Value(), TopAbs_VERTEX, anAllV); //aV2CV : vertex <-> its coincident vertices NCollection_DataMap> aV2CV; @@ -303,8 +299,8 @@ void BRepLib_MakeWire::CollectCoincidentVertices(const TopTools_ListOfShape& the //function : CreateNewVertices //purpose : //======================================================================= -void BRepLib_MakeWire::CreateNewVertices(const NCollection_List>& theGrVL, - NCollection_DataMap& theO2NV) +void BRepLib_MakeWire::CreateNewVertices(const NCollection_List>& theGrVL, + TopTools_DataMapOfShapeShape& theO2NV) { //map [old vertex => new vertex] //note that already existing shape (i.e. the original ones) @@ -356,7 +352,7 @@ void BRepLib_MakeWire::CreateNewVertices(const NCollection_List& theO2NV, + const TopTools_DataMapOfShapeShape& theO2NV, TopTools_ListOfShape& theNewEList) { ///create the new list (theNewEList) from the input list L diff --git a/tests/bugs/modalg_7/bug30522 b/tests/bugs/modalg_7/bug30522 new file mode 100644 index 0000000000..3f3a08ce56 --- /dev/null +++ b/tests/bugs/modalg_7/bug30522 @@ -0,0 +1,30 @@ +puts "REQUIRED All: Wire not done with an error" + +puts "========" +puts "0030522: Modeling Algorithms - BRepBuilderAPI_MakeWire produces different wires depending on the order of parameters" +puts "========" +puts "" + +restore [locate_data_file bug30522_w_line12.brep] w1 +restore [locate_data_file bug30522_w_line21.brep] w2 + +if {![regexp "Wire not done with an error" [wire r12 w1 w2]]} { + if {[lindex [nbshapes r12] 10] != 8} { + puts "Error: The wires have been unified incorrectly" + } +} + +wire r21 w2 w1 + +wire r12u -unsorted w1 w2 + +wire r21u -unsorted w2 w1 + +foreach r {r21 r12u r21u} { + checkshape $r + checknbshapes $r -edge 8 -vertex 8 +} + +smallview +Y+Z +donly r21; fit +checkview -screenshot -2d -path ${imagedir}/${test_image}.png