1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0024089: Missing section edge

Added test case bugs/modalg_5/bug24089
Small correction of test case buc60462_2
This commit is contained in:
pkv 2013-08-08 10:58:38 +04:00 committed by bugmaster
parent d390b16690
commit 1da6ad3265
3 changed files with 47 additions and 62 deletions

View File

@ -1315,7 +1315,6 @@ void BOPDS_DS::AloneVertices(const Standard_Integer theI,
} }
} }
} }
//======================================================================= //=======================================================================
//function : VerticesOnIn //function : VerticesOnIn
//purpose : //purpose :
@ -1325,79 +1324,44 @@ void BOPDS_DS::VerticesOnIn(const Standard_Integer nF1,
BOPCol_MapOfInteger& aMI, BOPCol_MapOfInteger& aMI,
BOPDS_MapOfPaveBlock& aMPB)const BOPDS_MapOfPaveBlock& aMPB)const
{ {
Standard_Integer nV, nV1, nV2; Standard_Integer i, nV, nV1, nV2;
BOPCol_MapIteratorOfMapOfInteger aIt; BOPCol_MapIteratorOfMapOfInteger aIt;
BOPDS_IndexedMapOfPaveBlock* pMPB[4];
BOPDS_MapIteratorOfMapOfPaveBlock aItMPB; BOPDS_MapIteratorOfMapOfPaveBlock aItMPB;
// //
const BOPDS_FaceInfo& aFI1=FaceInfo(nF1); const BOPDS_FaceInfo& aFI1=FaceInfo(nF1);
const BOPDS_FaceInfo& aFI2=FaceInfo(nF2); const BOPDS_FaceInfo& aFI2=FaceInfo(nF2);
// //
const BOPDS_IndexedMapOfPaveBlock& aMPBOn1=aFI1.PaveBlocksOn(); pMPB[0]=(BOPDS_IndexedMapOfPaveBlock*)&aFI1.PaveBlocksOn();
aItMPB.Initialize(aMPBOn1); pMPB[1]=(BOPDS_IndexedMapOfPaveBlock*)&aFI1.PaveBlocksIn();
for (; aItMPB.More(); aItMPB.Next()) { pMPB[2]=(BOPDS_IndexedMapOfPaveBlock*)&aFI2.PaveBlocksOn();
const Handle(BOPDS_PaveBlock)& aPB=aItMPB.Value(); pMPB[3]=(BOPDS_IndexedMapOfPaveBlock*)&aFI2.PaveBlocksIn();
aMPB.Add(aPB);
aPB->Indices(nV1, nV2);
aMI.Add(nV1);
aMI.Add(nV2);
}
// //
const BOPDS_IndexedMapOfPaveBlock& aMPBIn1=aFI1.PaveBlocksIn(); for (i=0; i<4; ++i) {
aItMPB.Initialize(aMPBIn1); aItMPB.Initialize(*pMPB[i]);
for (; aItMPB.More(); aItMPB.Next()) { for (; aItMPB.More(); aItMPB.Next()) {
const Handle(BOPDS_PaveBlock)& aPB=aItMPB.Value(); const Handle(BOPDS_PaveBlock)& aPB=aItMPB.Value();
aMPB.Add(aPB); aMPB.Add(aPB);
aPB->Indices(nV1, nV2); aPB->Indices(nV1, nV2);
aMI.Add(nV1); aMI.Add(nV1);
aMI.Add(nV2); aMI.Add(nV2);
} }
//
const BOPDS_IndexedMapOfPaveBlock& aMPBOn2=aFI2.PaveBlocksOn();
aItMPB.Initialize(aMPBOn2);
for (; aItMPB.More(); aItMPB.Next()) {
const Handle(BOPDS_PaveBlock)& aPB=aItMPB.Value();
aMPB.Add(aPB);
aPB->Indices(nV1, nV2);
aMI.Add(nV1);
aMI.Add(nV2);
}
//
const BOPDS_IndexedMapOfPaveBlock& aMPBIn2=aFI2.PaveBlocksIn();
aItMPB.Initialize(aMPBIn2);
for (; aItMPB.More(); aItMPB.Next()) {
const Handle(BOPDS_PaveBlock)& aPB=aItMPB.Value();
aMPB.Add(aPB);
aPB->Indices(nV1, nV2);
aMI.Add(nV1);
aMI.Add(nV2);
} }
// //
const BOPCol_MapOfInteger& aMVOn1=aFI1.VerticesOn(); const BOPCol_MapOfInteger& aMVOn1=aFI1.VerticesOn();
aIt.Initialize(aMVOn1);
for (; aIt.More(); aIt.Next()) {
nV=aIt.Value();
aMI.Add(nV);
}
//
const BOPCol_MapOfInteger& aMVIn1=aFI1.VerticesIn(); const BOPCol_MapOfInteger& aMVIn1=aFI1.VerticesIn();
aIt.Initialize(aMVIn1);
for (; aIt.More(); aIt.Next()) {
nV=aIt.Value();
aMI.Add(nV);
}
//
const BOPCol_MapOfInteger& aMVOn2=aFI2.VerticesOn(); const BOPCol_MapOfInteger& aMVOn2=aFI2.VerticesOn();
aIt.Initialize(aMVOn2);
for (; aIt.More(); aIt.Next()) {
nV=aIt.Value();
aMI.Add(nV);
}
//
const BOPCol_MapOfInteger& aMVIn2=aFI2.VerticesIn(); const BOPCol_MapOfInteger& aMVIn2=aFI2.VerticesIn();
aIt.Initialize(aMVIn2); //
for (; aIt.More(); aIt.Next()) { for (i=0; i<2; ++i) {
nV=aIt.Value(); const BOPCol_MapOfInteger& aMV1=(!i) ? aMVOn1 : aMVIn1;
aMI.Add(nV); aIt.Initialize(aMV1);
for (; aIt.More(); aIt.Next()) {
nV=aIt.Value();
if (aMVOn2.Contains(nV) || aMVIn2.Contains(nV)) {
aMI.Add(nV);
}
}
} }
} }
//======================================================================= //=======================================================================

View File

@ -1,4 +1,4 @@
puts "TODO OCC12345 windows: Faulty shapes in variables faulty_1 to faulty_" puts "TODO OCC12345 ALL: Faulty shapes in variables faulty_1 to faulty_"
puts "==========" puts "=========="
puts "BUC60462" puts "BUC60462"

View File

@ -0,0 +1,21 @@
puts "============"
puts "OCC24089"
puts "============"
puts ""
####################################################
# Missing section edge
####################################################
restore [locate_data_file bug24089_fz2] b1
restore [locate_data_file bug24089_qf1] b2
bop b1 b2
bopsection result
set nb_v_good 5
set nb_e_good 4
set nb_shape_good 10
set 2dviewer 0