diff --git a/src/BOPAlgo/BOPAlgo_MakerVolume.cxx b/src/BOPAlgo/BOPAlgo_MakerVolume.cxx index b596db0154..69808488c8 100644 --- a/src/BOPAlgo/BOPAlgo_MakerVolume.cxx +++ b/src/BOPAlgo/BOPAlgo_MakerVolume.cxx @@ -200,6 +200,7 @@ void BOPAlgo_MakerVolume::CollectFaces() // Standard_Integer i, aNbShapes; BOPCol_ListIteratorOfListOfShape aIt; + BOPCol_MapOfShape aMFence; // aNbShapes = myDS->NbSourceShapes(); for (i = 0; i < aNbShapes; ++i) { @@ -217,7 +218,9 @@ void BOPAlgo_MakerVolume::CollectFaces() aIt.Initialize(aLFIm); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aFIm = aIt.Value(); - AddFace(aFIm, myFaces); + if (aMFence.Add(aFIm)) { + AddFace(aFIm, myFaces); + } } } else { diff --git a/src/BOPDS/BOPDS_DS.cxx b/src/BOPDS/BOPDS_DS.cxx index a89cad8dc1..199487f70f 100644 --- a/src/BOPDS/BOPDS_DS.cxx +++ b/src/BOPDS/BOPDS_DS.cxx @@ -1734,7 +1734,7 @@ Standard_Boolean BOPDS_DS::CheckCoincidence aD=aPPC.LowerDistance(); // aTol=BRep_Tool::Tolerance(aE1); - aTol=aTol+BRep_Tool::Tolerance(aE2); + aTol=aTol+BRep_Tool::Tolerance(aE2) + Precision::Confusion(); if (aDaT21 && aT2x