mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0033420: Modeling Algorithm - Missing inner part after offset operation
Added condition to not remove face image, consisting only of invalid edges for artifactically invalid face. This face image should be connected with other image faces minimum through the edge.
This commit is contained in:
parent
f3a66dd7c0
commit
ae1683705e
@ -1177,6 +1177,45 @@ void BRepOffset_BuildOffsetFaces::IntersectTrimmedEdges (const Message_ProgressR
|
|||||||
UpdateIntersectedEdges (aLA, aGFE);
|
UpdateIntersectedEdges (aLA, aGFE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
//=======================================================================
|
||||||
|
//function : CheckConnectionsOfFace
|
||||||
|
//purpose : Checks number of connections for theFace with theLF
|
||||||
|
// Returns true if number of connections more than 1
|
||||||
|
//=======================================================================
|
||||||
|
static Standard_Boolean checkConnectionsOfFace(const TopoDS_Shape& theFace,
|
||||||
|
const TopTools_ListOfShape& theLF)
|
||||||
|
{
|
||||||
|
TopTools_IndexedMapOfShape aShapeVert;
|
||||||
|
for (TopTools_ListOfShape::Iterator aFImIterator(theLF); aFImIterator.More(); aFImIterator.Next())
|
||||||
|
{
|
||||||
|
const TopoDS_Shape& aShape = aFImIterator.Value();
|
||||||
|
if (aShape.IsSame(theFace))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
TopExp::MapShapes(aShape, TopAbs_VERTEX, aShapeVert);
|
||||||
|
}
|
||||||
|
Standard_Integer aNbConnections = 0;
|
||||||
|
TopTools_IndexedMapOfShape aFaceVertices;
|
||||||
|
TopExp::MapShapes(theFace, TopAbs_VERTEX, aFaceVertices);
|
||||||
|
for (TopTools_IndexedMapOfShape::Iterator aVertIter(aFaceVertices); aVertIter.More(); aVertIter.Next())
|
||||||
|
{
|
||||||
|
const TopoDS_Shape& aVert = aVertIter.Value();
|
||||||
|
if (aShapeVert.Contains(aVert))
|
||||||
|
{
|
||||||
|
++aNbConnections;
|
||||||
|
}
|
||||||
|
if (aNbConnections > 1)
|
||||||
|
{
|
||||||
|
return Standard_True;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Standard_False;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : BuildSplitsOfFaces
|
//function : BuildSplitsOfFaces
|
||||||
//purpose : Building the splits of offset faces and
|
//purpose : Building the splits of offset faces and
|
||||||
@ -1268,6 +1307,10 @@ void BRepOffset_BuildOffsetFaces::BuildSplitsOfFaces (const Message_ProgressRang
|
|||||||
for (TopTools_ListIteratorOfListOfShape aItLFIm (aLFImages1); aItLFIm.More();)
|
for (TopTools_ListIteratorOfListOfShape aItLFIm (aLFImages1); aItLFIm.More();)
|
||||||
{
|
{
|
||||||
Standard_Boolean bAllInv = Standard_True;
|
Standard_Boolean bAllInv = Standard_True;
|
||||||
|
// Additional check for artificial case
|
||||||
|
// if current image face consist only of edges from aMapEInv and aMENInv
|
||||||
|
// then recheck current face for the futher processing
|
||||||
|
Standard_Boolean aToReCheckFace = bArtificialCase;
|
||||||
const TopoDS_Shape& aFIm = aItLFIm.Value();
|
const TopoDS_Shape& aFIm = aItLFIm.Value();
|
||||||
TopExp_Explorer aExpE (aFIm, TopAbs_EDGE);
|
TopExp_Explorer aExpE (aFIm, TopAbs_EDGE);
|
||||||
for (; aExpE.More(); aExpE.Next())
|
for (; aExpE.More(); aExpE.Next())
|
||||||
@ -1278,12 +1321,19 @@ void BRepOffset_BuildOffsetFaces::BuildSplitsOfFaces (const Message_ProgressRang
|
|||||||
bAllInv = Standard_False;
|
bAllInv = Standard_False;
|
||||||
if (!aMENInv.Contains (aE))
|
if (!aMENInv.Contains (aE))
|
||||||
{
|
{
|
||||||
|
aToReCheckFace = Standard_False;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//
|
// if current image face is to recheck then check number of connections for this face
|
||||||
if (!aExpE.More())
|
// with other image faces for current face
|
||||||
|
if (!aExpE.More() && aToReCheckFace)
|
||||||
|
{
|
||||||
|
aToReCheckFace = checkConnectionsOfFace(aFIm, aLFImages1);
|
||||||
|
}
|
||||||
|
// do not delete image face from futher processing if aToReCheckFace is true
|
||||||
|
if (!aExpE.More() && !aToReCheckFace)
|
||||||
{
|
{
|
||||||
if (bAllInv)
|
if (bAllInv)
|
||||||
{
|
{
|
||||||
|
7
tests/offset/shape_type_i_c/AA1
Normal file
7
tests/offset/shape_type_i_c/AA1
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
restore [locate_data_file bug33420.brep] s
|
||||||
|
|
||||||
|
OFFSETSHAPE 35 {} $calcul $type
|
||||||
|
|
||||||
|
checkprops result -v 4.04602e+07
|
||||||
|
|
||||||
|
checknbshapes result -face 43 -shell 1
|
@ -1,3 +1,5 @@
|
|||||||
|
puts "TODO OCC27414 ALL: Error : The area of result shape is"
|
||||||
|
|
||||||
restore [locate_data_file bug26917_M2_trim33.brep] s
|
restore [locate_data_file bug26917_M2_trim33.brep] s
|
||||||
|
|
||||||
OFFSETSHAPE 8 {} $calcul $type
|
OFFSETSHAPE 8 {} $calcul $type
|
||||||
|
@ -7,4 +7,4 @@ offsetperform result
|
|||||||
checkprops result -s 6.21471e+06 -v 8.95633e+08
|
checkprops result -s 6.21471e+06 -v 8.95633e+08
|
||||||
|
|
||||||
unifysamedom result_unif result
|
unifysamedom result_unif result
|
||||||
checknbshapes result_unif -wire 140 -face 138 -shell 1 -solid 1
|
checknbshapes result_unif -wire 142 -face 140 -shell 1 -solid 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user