From 3285a59aa0d724a33c81bdd29274d179e8c2ec8b Mon Sep 17 00:00:00 2001 From: emv Date: Thu, 21 May 2015 12:52:03 +0300 Subject: [PATCH] 0026218: Wrong result done by General Fuse algorithm class BOPAlgo_PaveFiller 1. method void BOPAlgo_PaveFiller::MakeBlocks() Update of FaceInfo IN information before filling the maps. 2. methods void BOPAlgo_PaveFiller::UpdateFaceInfo (BOPDS_DataMapOfPaveBlockListOfPaveBlock& theDME, const BOPCol_DataMapOfIntegerInteger& theDMV) void BOPAlgo_PaveFiller::ProcessExistingPaveBlocks (const Standard_Integer theInt, const BOPDS_IndexedMapOfPaveBlock& aMPBOnIn, const BOPCol_DataMapOfIntegerListOfInteger& aDMBV, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& aMSCPB, BOPCol_DataMapOfShapeInteger& aMVI, BOPDS_MapOfPaveBlock& aMPB) Small changes in treatment of existing pave blocks when making new ones from intersection curves. Test case for issue CR26218 Correction of test case for issue CR26218 --- src/BOPAlgo/BOPAlgo_PaveFiller.cdl | 9 +- src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx | 155 ++++++++++++++++----------- tests/bugs/modalg_6/bug26218 | 36 +++++++ 3 files changed, 136 insertions(+), 64 deletions(-) create mode 100755 tests/bugs/modalg_6/bug26218 diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.cdl b/src/BOPAlgo/BOPAlgo_PaveFiller.cdl index 9d943abfe1..237f49d1fe 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller.cdl +++ b/src/BOPAlgo/BOPAlgo_PaveFiller.cdl @@ -240,7 +240,7 @@ is theF2: Face from TopoDS; theTolR3D:Real from Standard; theNC:out Curve from BOPDS; - theMVB:out MapOfInteger from BOPCol) + theLBV:out ListOfInteger from BOPCol) is protected; IsExistingPaveBlock(me:out; @@ -367,9 +367,9 @@ is ProcessExistingPaveBlocks(me:out; theInt : Integer from Standard; theMPBOnIn : IndexedMapOfPaveBlock from BOPDS; + theDMBV : DataMapOfIntegerListOfInteger from BOPCol; theMSCPB : out IndexedDataMapOfShapeCoupleOfPaveBlocks from BOPDS; theMVI : out DataMapOfShapeInteger from BOPCol; - theMVB : MapOfInteger from BOPCol; theMPB : out MapOfPaveBlock from BOPDS) is protected; ---Purpose: @@ -402,11 +402,12 @@ is -- is closed 3D-curve PreparePostTreatFF(me:out; - aInt : Integer from Standard; + aInt : Integer from Standard; + aCur : Integer from Standard; aPB : PaveBlock from BOPDS; aMSCPB : out IndexedDataMapOfShapeCoupleOfPaveBlocks from BOPDS; aMVI : out DataMapOfShapeInteger from BOPCol; - aVC : out VectorOfCurve from BOPDS) + aLPB : out ListOfPaveBlock from BOPDS) is protected; ---Purpose: -- Keeps data for post treatment diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx index 738f9336e0..850f5828b2 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx @@ -374,10 +374,10 @@ void BOPAlgo_PaveFiller::MakeBlocks() //-----------------------------------------------------scope f aAllocator=new NCollection_IncAllocator(); // - BOPCol_ListOfInteger aLSE(aAllocator); + BOPCol_ListOfInteger aLSE(aAllocator), aLBV(aAllocator); BOPCol_MapOfInteger aMVOnIn(100, aAllocator), aMF(100, aAllocator), aMVStick(100,aAllocator), aMVEF(100, aAllocator), - aMVB(100, aAllocator), aMI(100, aAllocator); + aMI(100, aAllocator); BOPDS_IndexedMapOfPaveBlock aMPBOnIn(100, aAllocator); BOPDS_MapOfPaveBlock aMPBAdd(100, aAllocator); BOPDS_ListOfPaveBlock aLPB(aAllocator); @@ -385,8 +385,9 @@ void BOPAlgo_PaveFiller::MakeBlocks() BOPCol_DataMapOfShapeInteger aMVI(100, aAllocator); BOPDS_DataMapOfPaveBlockListOfPaveBlock aDMExEdges(100, aAllocator); BOPCol_DataMapOfIntegerReal aMVTol(100, aAllocator); - BOPCol_DataMapIteratorOfDataMapOfIntegerReal aItMV; BOPCol_DataMapOfIntegerInteger aDMI(100, aAllocator); + BOPCol_DataMapOfIntegerListOfInteger aDMBV(100, aAllocator); + BOPCol_DataMapIteratorOfDataMapOfIntegerReal aItMV; // for (i=0; iUpdateFaceInfoOn(nF1); + myDS->UpdateFaceInfoIn(nF1); } if (aMF.Add(nF2)) { myDS->UpdateFaceInfoOn(nF2); + myDS->UpdateFaceInfoIn(nF2); } - + // BOPDS_FaceInfo& aFI1=myDS->ChangeFaceInfo(nF1); BOPDS_FaceInfo& aFI2=myDS->ChangeFaceInfo(nF2); // aMVOnIn.Clear(); aMPBOnIn.Clear(); - aMVB.Clear(); + aDMBV.Clear(); aMVTol.Clear(); // myDS->VerticesOnIn(nF1, nF2, aMVOnIn, aMPBOnIn); @@ -465,7 +468,13 @@ void BOPAlgo_PaveFiller::MakeBlocks() } // if (aIC.HasBounds()) { - PutBoundPaveOnCurve(aF1, aF2, aTolR3D, aNC, aMVB); + aLBV.Clear(); + // + PutBoundPaveOnCurve(aF1, aF2, aTolR3D, aNC, aLBV); + // + if (!aLBV.IsEmpty()) { + aDMBV.Bind(j, aLBV); + } } }//for (j=0; jTolerance(aTol); } // - ProcessExistingPaveBlocks(i, aMPBOnIn, aMSCPB, aMVI, aMVB, aMPBAdd); + ProcessExistingPaveBlocks(i, aMPBOnIn, aDMBV, aMSCPB, aMVI, aMPBAdd); }//for (i=0; iChangeShapeInfo(nVn); Bnd_Box& aBoxDS=aSIDS.ChangeBox(); BRepBndLib::Add(aVn, aBoxDS); - aMVB.Add(nVn); + // + aLVB.Append(nVn); } } } @@ -1769,51 +1785,68 @@ void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC, void BOPAlgo_PaveFiller::ProcessExistingPaveBlocks (const Standard_Integer theInt, const BOPDS_IndexedMapOfPaveBlock& aMPBOnIn, + const BOPCol_DataMapOfIntegerListOfInteger& aDMBV, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& aMSCPB, BOPCol_DataMapOfShapeInteger& aMVI, - const BOPCol_MapOfInteger& aMVB, BOPDS_MapOfPaveBlock& aMPB) { - Standard_Integer nV, nE, iFlag, i, aNbPB; - Standard_Real aT; - BOPCol_MapIteratorOfMapOfInteger aItB; + if (aDMBV.IsEmpty()) { + return; + } // - BOPDS_VectorOfInterfFF& aFFs=myDS->InterfFF(); + Standard_Real aT; + Standard_Integer i, nV, nE, iC, aNbPB, iFlag; + BOPCol_ListIteratorOfListOfInteger aItLI; + BOPCol_DataMapIteratorOfDataMapOfIntegerListOfInteger aItBV; + // + BOPDS_VectorOfInterfFF& aFFs = myDS->InterfFF(); BOPDS_InterfFF& aFF = aFFs(theInt); - BOPDS_VectorOfCurve& aVC=aFF.ChangeCurves(); - // - aItB.Initialize(aMVB); - for (; aItB.More(); aItB.Next()) { - nV = aItB.Value(); - const BOPDS_ShapeInfo& aSIV=myDS->ShapeInfo(nV); - const Bnd_Box& aBoxV=aSIV.Box(); - const TopoDS_Vertex& aV = *(TopoDS_Vertex*)&aSIV.Shape(); - if (!aMVI.IsBound(aV)) { - continue; - } + BOPDS_VectorOfCurve& aVC = aFF.ChangeCurves(); + // + aNbPB = aMPBOnIn.Extent(); + // + aItBV.Initialize(aDMBV); + for (; aItBV.More(); aItBV.Next()) { + iC = aItBV.Key(); + const BOPCol_ListOfInteger& aLBV = aItBV.Value(); // - aNbPB = aMPBOnIn.Extent(); - for (i = 1; i <= aNbPB; ++i) { - const Handle(BOPDS_PaveBlock)& aPB = aMPBOnIn(i); - if (aPB->Pave1().Index() == nV || aPB->Pave2().Index() == nV) { + BOPDS_Curve& aNC = aVC.ChangeValue(iC); + BOPDS_ListOfPaveBlock& aLPBC = aNC.ChangePaveBlocks(); + // + aItLI.Initialize(aLBV); + for (; aItLI.More(); aItLI.Next()) { + nV = aItLI.Value(); + const BOPDS_ShapeInfo& aSIV=myDS->ShapeInfo(nV); + const Bnd_Box& aBoxV=aSIV.Box(); + const TopoDS_Vertex& aV = *(TopoDS_Vertex*)&aSIV.Shape(); + if (!aMVI.IsBound(aV)) { continue; } // - if (aMPB.Contains(aPB)) { - continue; - } - nE=aPB->Edge(); - const BOPDS_ShapeInfo& aSIE=myDS->ShapeInfo(nE); - const Bnd_Box& aBoxE=aSIE.Box(); - // - if (!aBoxV.IsOut(aBoxE)) { + for (i = 1; i <= aNbPB; ++i) { + const Handle(BOPDS_PaveBlock)& aPB = aMPBOnIn(i); + if (aPB->Pave1().Index() == nV || aPB->Pave2().Index() == nV) { + continue; + } + // + if (aMPB.Contains(aPB)) { + continue; + } + // + nE = aPB->Edge(); + const BOPDS_ShapeInfo& aSIE = myDS->ShapeInfo(nE); + const Bnd_Box& aBoxE = aSIE.Box(); + // + if (aBoxV.IsOut(aBoxE)) { + continue; + } + // const TopoDS_Edge& aE = *(TopoDS_Edge*)&aSIE.Shape(); // - iFlag=myContext->ComputeVE (aV, aE, aT); + iFlag = myContext->ComputeVE(aV, aE, aT); if (!iFlag) { aMPB.Add(aPB); - // - PreparePostTreatFF(theInt, aPB, aMSCPB, aMVI, aVC); + PreparePostTreatFF(theInt, iC, aPB, aMSCPB, aMVI, aLPBC); } } } @@ -1888,10 +1921,11 @@ void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC, // 3. Update pave blocks if (bCB) { //create new common blocks + BOPDS_ListOfPaveBlock aLPBNew; const BOPCol_ListOfInteger& aFaces = aCB1->Faces(); aIt.Initialize(aLPB); for (; aIt.More(); aIt.Next()) { - Handle(BOPDS_PaveBlock)& aPB = aIt.ChangeValue(); + const Handle(BOPDS_PaveBlock)& aPB = aIt.Value(); // aCB = new BOPDS_CommonBlock; aIt1.Initialize(aLPB1); @@ -1911,8 +1945,11 @@ void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC, aCB->AddFaces(aFaces); myDS->SortPaveBlocks(aCB); // - aPB=aCB->PaveBlocks().First(); + const Handle(BOPDS_PaveBlock)& aPBNew = aCB->PaveBlocks().First(); + aLPBNew.Append(aPBNew); } + // + aLPB = aLPBNew; } else { nE = aPBf->OriginalEdge(); @@ -2038,16 +2075,14 @@ void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC, //======================================================================= void BOPAlgo_PaveFiller::PreparePostTreatFF (const Standard_Integer aInt, + const Standard_Integer aCur, const Handle(BOPDS_PaveBlock)& aPB, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& aMSCPB, BOPCol_DataMapOfShapeInteger& aMVI, - BOPDS_VectorOfCurve& aVC) + BOPDS_ListOfPaveBlock& aLPBC) { - Standard_Integer nV1, nV2, iC; + Standard_Integer nV1, nV2; // - aVC.Append1(); - iC=aVC.Extent()-1; - BOPDS_ListOfPaveBlock& aLPBC = aVC(iC).ChangePaveBlocks(); aLPBC.Append(aPB); // aPB->Indices(nV1, nV2); @@ -2057,7 +2092,7 @@ void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC, // Keep info for post treatment BOPDS_CoupleOfPaveBlocks aCPB; aCPB.SetIndexInterf(aInt); - aCPB.SetIndex(iC); + aCPB.SetIndex(aCur); aCPB.SetPaveBlock1(aPB); // aMSCPB.Add(aE, aCPB); diff --git a/tests/bugs/modalg_6/bug26218 b/tests/bugs/modalg_6/bug26218 new file mode 100755 index 0000000000..f7b29de009 --- /dev/null +++ b/tests/bugs/modalg_6/bug26218 @@ -0,0 +1,36 @@ +puts "============" +puts "OCC26218" +puts "============" +puts "" +############################### +## Wrong result done by General Fuse algorithm +############################### + +restore [locate_data_file bug26218_b11.brep] b1 +restore [locate_data_file bug26218_b21.brep] b2 + +bclearobjects +bcleartools +baddobjects b1 +baddcompound b2 + +bfillds +bbuild result + +set square 2728.77 + +set nbshapes_expected " +Number of shapes in shape + VERTEX : 31 + EDGE : 52 + WIRE : 25 + FACE : 25 + SHELL : 4 + SOLID : 4 + COMPSOLID : 0 + COMPOUND : 1 + SHAPE : 142 +" +checknbshapes result -ref ${nbshapes_expected} -t -m "result done by General Fuse algorithm" + +set 3dviewer 1