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

0027309: Result of UnifySameDomain has InvalidMultiConnexity error

The update of the set of boundary edges has been added for the case when faces containing milti-connected edges are excluded from merging.

Update test cases for unifysamedom to generate snapshots.
This commit is contained in:
msv 2016-03-25 19:19:35 +03:00 committed by bugmaster
parent b0cef6061a
commit cb120537bf
8 changed files with 47 additions and 1 deletions

View File

@ -1208,8 +1208,25 @@ void ShapeUpgrade_UnifySameDomain::UnifyFaces()
anAvoidFaces.Add(aLF.Last()); anAvoidFaces.Add(aLF.Last());
} }
for (i = 1; i <= faces.Length(); ) { for (i = 1; i <= faces.Length(); ) {
if (anAvoidFaces.Contains(faces(i))) if (anAvoidFaces.Contains(faces(i))) {
// update the boundaries of merged area, for that
// remove from 'edges' the edges of this face and add to 'edges'
// the edges of this face that were not present in 'edges' before
TopExp_Explorer ex(faces(i), TopAbs_EDGE);
for (; ex.More(); ex.Next()) {
TopoDS_Shape aE = ex.Current();
Standard_Integer j;
for (j = 1; j <= edges.Length(); j++) {
if (edges(j).IsSame(aE))
break;
}
if (j <= edges.Length())
edges.Remove(j);
else
edges.Append(aE);
}
faces.Remove(i); faces.Remove(i);
}
else else
i++; i++;
} }

View File

@ -16,3 +16,5 @@ don result
smallview; l; fit smallview; l; fit
bopcheck result bopcheck result
checknbshapes result -m UnifySameDomain -face 22 -edge 40 checknbshapes result -m UnifySameDomain -face 22 -edge 40
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -16,3 +16,5 @@ don result
smallview; l; fit smallview; l; fit
bopcheck result bopcheck result
checknbshapes result -m UnifySameDomain -face 14 -edge 28 checknbshapes result -m UnifySameDomain -face 14 -edge 28
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -15,3 +15,5 @@ don result
smallview; l; fit smallview; l; fit
bopcheck result bopcheck result
checknbshapes result -m UnifySameDomain -face 37 -edge 94 checknbshapes result -m UnifySameDomain -face 37 -edge 94
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -15,3 +15,5 @@ don result
smallview; l; fit smallview; l; fit
bopcheck result bopcheck result
checknbshapes result -m UnifySameDomain -face 33 -edge 86 checknbshapes result -m UnifySameDomain -face 33 -edge 86
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -13,3 +13,5 @@ don result
smallview; l; fit smallview; l; fit
bopcheck result bopcheck result
checknbshapes result -m UnifySameDomain -face 249 -edge 600 checknbshapes result -m UnifySameDomain -face 249 -edge 600
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -13,3 +13,5 @@ don result
smallview; l; fit smallview; l; fit
bopcheck result bopcheck result
checknbshapes result -m UnifySameDomain -face 225 -edge 576 checknbshapes result -m UnifySameDomain -face 225 -edge 576
checkview -screenshot -2d -path ${imagedir}/${test_image}.png

View File

@ -0,0 +1,17 @@
puts "============"
puts "OCC27309"
puts "============"
puts ""
###############################
## Result of UnifySameDomain has InvalidMultiConnexity error
###############################
restore [locate_data_file bug27309_shape.brep] a
unifysamedom result a
don result
smallview; l; fit
checkshape result
checknbshapes result -m UnifySameDomain -face 28 -edge 66
checkview -screenshot -2d -path ${imagedir}/${test_image}.png