mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0026466: UnifySameDomain creates invalid result shape from valid input shape
Test-case for issue #26466
This commit is contained in:
parent
a493b4a124
commit
ce41efdeb3
@ -1172,201 +1172,187 @@ void ShapeUpgrade_UnifySameDomain::UnifyEdges()
|
|||||||
Standard_Real myTolerance = Precision::Confusion();
|
Standard_Real myTolerance = Precision::Confusion();
|
||||||
TopoDS_Shape aResult = myContext->Apply(myShape);
|
TopoDS_Shape aResult = myContext->Apply(myShape);
|
||||||
|
|
||||||
// processing each solid
|
TopTools_IndexedMapOfShape ChangedFaces;
|
||||||
TopAbs_ShapeEnum aType = TopAbs_SOLID;
|
|
||||||
TopExp_Explorer exps (myShape, aType);
|
|
||||||
if (!exps.More()) {
|
|
||||||
aType = TopAbs_SHELL;
|
|
||||||
exps.Init(myShape, aType);
|
|
||||||
}
|
|
||||||
for (; exps.More(); exps.Next()) {
|
|
||||||
//TopoDS_Solid aSolid = TopoDS::Solid(exps.Current());
|
|
||||||
TopoDS_Shape aSolid = exps.Current();
|
|
||||||
|
|
||||||
TopTools_IndexedMapOfShape ChangedFaces;
|
// creating map of edge faces
|
||||||
|
TopTools_IndexedDataMapOfShapeListOfShape aMapEdgeFaces;
|
||||||
|
TopExp::MapShapesAndAncestors(myShape, TopAbs_EDGE, TopAbs_FACE, aMapEdgeFaces);
|
||||||
|
|
||||||
|
// creating map of vertex edges
|
||||||
|
TopTools_IndexedDataMapOfShapeListOfShape aMapEdgesVertex;
|
||||||
|
TopExp::MapShapesAndAncestors(myShape, TopAbs_VERTEX, TopAbs_EDGE, aMapEdgesVertex);
|
||||||
|
|
||||||
// creating map of edge faces
|
//Handle(ShapeBuild_ReShape) aContext = new ShapeBuild_ReShape;
|
||||||
TopTools_IndexedDataMapOfShapeListOfShape aMapEdgeFaces;
|
TopoDS_Shape aRes = myShape;
|
||||||
TopExp::MapShapesAndAncestors(aSolid, TopAbs_EDGE, TopAbs_FACE, aMapEdgeFaces);
|
//aRes = aContext->Apply(aSolid);
|
||||||
|
aRes = myContext->Apply(myShape);
|
||||||
// creating map of vertex edges
|
|
||||||
TopTools_IndexedDataMapOfShapeListOfShape aMapEdgesVertex;
|
|
||||||
TopExp::MapShapesAndAncestors(aSolid, TopAbs_VERTEX, TopAbs_EDGE, aMapEdgesVertex);
|
|
||||||
|
|
||||||
//Handle(ShapeBuild_ReShape) aContext = new ShapeBuild_ReShape;
|
// processing each face
|
||||||
TopoDS_Shape aRes = aSolid;
|
TopExp_Explorer exp;
|
||||||
//aRes = aContext->Apply(aSolid);
|
for (exp.Init(aRes, TopAbs_FACE); exp.More(); exp.Next()) {
|
||||||
aRes = myContext->Apply(aSolid);
|
//TopoDS_Face aFace = TopoDS::Face(aContext->Apply(exp.Current().Oriented(TopAbs_FORWARD)));
|
||||||
|
TopoDS_Face aFace = TopoDS::Face(myContext->Apply(exp.Current().Oriented(TopAbs_FORWARD)));
|
||||||
|
TopTools_IndexedDataMapOfShapeListOfShape aMapFacesEdges;
|
||||||
|
|
||||||
// processing each face
|
for (TopExp_Explorer expe(aFace,TopAbs_EDGE); expe.More(); expe.Next()) {
|
||||||
TopExp_Explorer exp;
|
TopoDS_Edge edge = TopoDS::Edge(expe.Current());
|
||||||
for (exp.Init(aRes, TopAbs_FACE); exp.More(); exp.Next()) {
|
if (!aMapEdgeFaces.Contains(edge)) continue;
|
||||||
//TopoDS_Face aFace = TopoDS::Face(aContext->Apply(exp.Current().Oriented(TopAbs_FORWARD)));
|
const TopTools_ListOfShape& aList = aMapEdgeFaces.FindFromKey(edge);
|
||||||
TopoDS_Face aFace = TopoDS::Face(myContext->Apply(exp.Current().Oriented(TopAbs_FORWARD)));
|
TopTools_ListIteratorOfListOfShape anIter(aList);
|
||||||
TopTools_IndexedDataMapOfShapeListOfShape aMapFacesEdges;
|
for ( ; anIter.More(); anIter.Next()) {
|
||||||
|
TopoDS_Face face = TopoDS::Face(anIter.Value());
|
||||||
for (TopExp_Explorer expe(aFace,TopAbs_EDGE); expe.More(); expe.Next()) {
|
//TopoDS_Face face1 = TopoDS::Face(aContext->Apply(anIter.Value()));
|
||||||
TopoDS_Edge edge = TopoDS::Edge(expe.Current());
|
TopoDS_Face face1 = TopoDS::Face(myContext->Apply(anIter.Value()));
|
||||||
if (!aMapEdgeFaces.Contains(edge)) continue;
|
if (face1.IsSame(aFace)) continue;
|
||||||
const TopTools_ListOfShape& aList = aMapEdgeFaces.FindFromKey(edge);
|
if (aMapFacesEdges.Contains(face)) {
|
||||||
TopTools_ListIteratorOfListOfShape anIter(aList);
|
aMapFacesEdges.ChangeFromKey(face).Append(edge);
|
||||||
for ( ; anIter.More(); anIter.Next()) {
|
}
|
||||||
TopoDS_Face face = TopoDS::Face(anIter.Value());
|
else {
|
||||||
//TopoDS_Face face1 = TopoDS::Face(aContext->Apply(anIter.Value()));
|
TopTools_ListOfShape ListEdges;
|
||||||
TopoDS_Face face1 = TopoDS::Face(myContext->Apply(anIter.Value()));
|
ListEdges.Append(edge);
|
||||||
if (face1.IsSame(aFace)) continue;
|
aMapFacesEdges.Add(face,ListEdges);
|
||||||
if (aMapFacesEdges.Contains(face)) {
|
|
||||||
aMapFacesEdges.ChangeFromKey(face).Append(edge);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
TopTools_ListOfShape ListEdges;
|
|
||||||
ListEdges.Append(edge);
|
|
||||||
aMapFacesEdges.Add(face,ListEdges);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (Standard_Integer i=1; i<=aMapFacesEdges.Extent(); i++) {
|
|
||||||
const TopTools_ListOfShape& ListEdges = aMapFacesEdges.FindFromIndex(i);
|
|
||||||
TopTools_SequenceOfShape SeqEdges;
|
|
||||||
ShapeAnalysis_Edge sae;
|
|
||||||
TopTools_ListIteratorOfListOfShape anIter(ListEdges);
|
|
||||||
Standard_Boolean IsSharedVertexPresent = Standard_False;
|
|
||||||
for ( ; anIter.More(); anIter.Next())
|
|
||||||
SeqEdges.Append(anIter.Value());
|
|
||||||
if (SeqEdges.Length()==1)
|
|
||||||
continue;
|
|
||||||
TopTools_SequenceOfShape SeqVertexes;
|
|
||||||
TopTools_MapOfShape MapVertexes;
|
|
||||||
for (int k = 1; k <= SeqEdges.Length(); k++ )
|
|
||||||
{
|
|
||||||
TopoDS_Vertex aV1 = sae.FirstVertex(TopoDS::Edge(SeqEdges(k)));
|
|
||||||
TopoDS_Vertex aV2 = sae.LastVertex(TopoDS::Edge(SeqEdges(k)));
|
|
||||||
if (!MapVertexes.Add(aV1))
|
|
||||||
SeqVertexes.Append(aV1);
|
|
||||||
if (!MapVertexes.Add(aV2))
|
|
||||||
SeqVertexes.Append(aV2);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (Standard_Integer k = 1; k <= SeqVertexes.Length() && !IsSharedVertexPresent; k++ )
|
|
||||||
{
|
|
||||||
const TopTools_ListOfShape& ListEdgesV1 = aMapEdgesVertex.FindFromKey(SeqVertexes(k));
|
|
||||||
TopTools_MapOfShape aMapOfEdges;
|
|
||||||
TopTools_ListIteratorOfListOfShape iter(ListEdgesV1);
|
|
||||||
for (; iter.More(); iter.Next())
|
|
||||||
aMapOfEdges.Add(iter.Value());
|
|
||||||
if (aMapOfEdges.Extent() > 2)
|
|
||||||
IsSharedVertexPresent = Standard_True;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (IsSharedVertexPresent)
|
|
||||||
continue;
|
|
||||||
TopoDS_Edge E;
|
|
||||||
if ( MergeEdges(SeqEdges,aFace,Tol,myConcatBSplines,E) ) {
|
|
||||||
// now we have only one edge - aChain.Value(1)
|
|
||||||
// we have to replace old ListEdges with this new edge
|
|
||||||
//aContext->Replace(SeqEdges(1),E);
|
|
||||||
myContext->Replace(SeqEdges(1),E);
|
|
||||||
Standard_Integer j;
|
|
||||||
for (j = 2; j <= SeqEdges.Length(); j++) {
|
|
||||||
//aContext->Remove(SeqEdges(j));
|
|
||||||
myContext->Remove(SeqEdges(j));
|
|
||||||
//myOldNewMap.Bind(SeqEdges(j), E);
|
|
||||||
}
|
|
||||||
//for history
|
|
||||||
/*
|
|
||||||
for (j = 1; j <= SeqEdges.Length(); j++)
|
|
||||||
{
|
|
||||||
if (!myOldNewMap.IsBound(SeqEdges(j)))
|
|
||||||
{
|
|
||||||
TopTools_ListOfShape EmptyList;
|
|
||||||
myOldNewMap.Bind(SeqEdges(j), EmptyList);
|
|
||||||
}
|
|
||||||
myOldNewMap(SeqEdges(j)).Clear();
|
|
||||||
myOldNewMap(SeqEdges(j)).Append(E);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
/////////////
|
|
||||||
|
|
||||||
TopoDS_Face tmpF = TopoDS::Face(exp.Current());
|
|
||||||
if ( !ChangedFaces.Contains(tmpF) )
|
|
||||||
ChangedFaces.Add(tmpF);
|
|
||||||
tmpF = TopoDS::Face(aMapFacesEdges.FindKey(i));
|
|
||||||
if ( !ChangedFaces.Contains(tmpF) )
|
|
||||||
ChangedFaces.Add(tmpF);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} // end processing each face
|
|
||||||
|
|
||||||
// fix changed faces and replace them in the local context
|
|
||||||
for (Standard_Integer i=1; i<=ChangedFaces.Extent(); i++) {
|
|
||||||
//TopoDS_Face aFace = TopoDS::Face(aContext->Apply(ChangedFaces.FindKey(i)));
|
|
||||||
TopoDS_Face aFace = TopoDS::Face(myContext->Apply(ChangedFaces.FindKey(i)));
|
|
||||||
Handle(ShapeFix_Face) sff = new ShapeFix_Face(aFace);
|
|
||||||
sff->SetContext(myContext);
|
|
||||||
sff->SetPrecision(myTolerance);
|
|
||||||
sff->SetMinTolerance(myTolerance);
|
|
||||||
sff->SetMaxTolerance(Max(1.,myTolerance*1000.));
|
|
||||||
sff->Perform();
|
|
||||||
TopoDS_Shape aNewFace = sff->Face();
|
|
||||||
//aContext->Replace(aFace,aNewFace);
|
|
||||||
myContext->Replace(aFace,aNewFace);
|
|
||||||
//for history
|
|
||||||
/*
|
|
||||||
if (!myOldNewMap.IsBound(aFace))
|
|
||||||
{
|
|
||||||
TopTools_ListOfShape EmptyList;
|
|
||||||
myOldNewMap.Bind(aFace, EmptyList);
|
|
||||||
}
|
|
||||||
myOldNewMap(aFace).Clear();
|
|
||||||
myOldNewMap(aFace).Append(aNewFace);
|
|
||||||
*/
|
|
||||||
/////////////
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ChangedFaces.Extent() > 0) {
|
for (Standard_Integer i=1; i<=aMapFacesEdges.Extent(); i++) {
|
||||||
// fix changed shell and replace it in the local context
|
const TopTools_ListOfShape& ListEdges = aMapFacesEdges.FindFromIndex(i);
|
||||||
//TopoDS_Shape aRes1 = aContext->Apply(aRes);
|
TopTools_SequenceOfShape SeqEdges;
|
||||||
TopoDS_Shape aRes1 = myContext->Apply(aRes);
|
ShapeAnalysis_Edge sae;
|
||||||
TopExp_Explorer expsh;
|
TopTools_ListIteratorOfListOfShape anIter(ListEdges);
|
||||||
for (expsh.Init(aRes1, TopAbs_SHELL); expsh.More(); expsh.Next()) {
|
Standard_Boolean IsSharedVertexPresent = Standard_False;
|
||||||
TopoDS_Shell aShell = TopoDS::Shell(expsh.Current());
|
for ( ; anIter.More(); anIter.Next())
|
||||||
Handle(ShapeFix_Shell) sfsh = new ShapeFix_Shell;
|
SeqEdges.Append(anIter.Value());
|
||||||
sfsh->FixFaceOrientation(aShell);
|
if (SeqEdges.Length()==1)
|
||||||
TopoDS_Shape aNewShell = sfsh->Shell();
|
continue;
|
||||||
//aContext->Replace(aShell,aNewShell);
|
TopTools_SequenceOfShape SeqVertexes;
|
||||||
myContext->Replace(aShell,aNewShell);
|
TopTools_MapOfShape MapVertexes;
|
||||||
|
for (int k = 1; k <= SeqEdges.Length(); k++ )
|
||||||
|
{
|
||||||
|
TopoDS_Vertex aV1 = sae.FirstVertex(TopoDS::Edge(SeqEdges(k)));
|
||||||
|
TopoDS_Vertex aV2 = sae.LastVertex(TopoDS::Edge(SeqEdges(k)));
|
||||||
|
if (!MapVertexes.Add(aV1))
|
||||||
|
SeqVertexes.Append(aV1);
|
||||||
|
if (!MapVertexes.Add(aV2))
|
||||||
|
SeqVertexes.Append(aV2);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (Standard_Integer k = 1; k <= SeqVertexes.Length() && !IsSharedVertexPresent; k++ )
|
||||||
|
{
|
||||||
|
const TopTools_ListOfShape& ListEdgesV1 = aMapEdgesVertex.FindFromKey(SeqVertexes(k));
|
||||||
|
TopTools_MapOfShape aMapOfEdges;
|
||||||
|
TopTools_ListIteratorOfListOfShape iter(ListEdgesV1);
|
||||||
|
for (; iter.More(); iter.Next())
|
||||||
|
aMapOfEdges.Add(iter.Value());
|
||||||
|
if (aMapOfEdges.Extent() > 2)
|
||||||
|
IsSharedVertexPresent = Standard_True;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (IsSharedVertexPresent)
|
||||||
|
continue;
|
||||||
|
TopoDS_Edge E;
|
||||||
|
if ( MergeEdges(SeqEdges,aFace,Tol,myConcatBSplines,E) ) {
|
||||||
|
// now we have only one edge - aChain.Value(1)
|
||||||
|
// we have to replace old ListEdges with this new edge
|
||||||
|
//aContext->Replace(SeqEdges(1),E);
|
||||||
|
myContext->Replace(SeqEdges(1),E);
|
||||||
|
Standard_Integer j;
|
||||||
|
for (j = 2; j <= SeqEdges.Length(); j++) {
|
||||||
|
//aContext->Remove(SeqEdges(j));
|
||||||
|
myContext->Remove(SeqEdges(j));
|
||||||
|
//myOldNewMap.Bind(SeqEdges(j), E);
|
||||||
|
}
|
||||||
//for history
|
//for history
|
||||||
/*
|
/*
|
||||||
if (!myOldNewMap.IsBound(aShell))
|
for (j = 1; j <= SeqEdges.Length(); j++)
|
||||||
{
|
{
|
||||||
TopTools_ListOfShape EmptyList;
|
if (!myOldNewMap.IsBound(SeqEdges(j)))
|
||||||
myOldNewMap.Bind(aShell, EmptyList);
|
{
|
||||||
|
TopTools_ListOfShape EmptyList;
|
||||||
|
myOldNewMap.Bind(SeqEdges(j), EmptyList);
|
||||||
|
}
|
||||||
|
myOldNewMap(SeqEdges(j)).Clear();
|
||||||
|
myOldNewMap(SeqEdges(j)).Append(E);
|
||||||
}
|
}
|
||||||
myOldNewMap(aShell).Clear();
|
|
||||||
myOldNewMap(aShell).Append(aNewShell);
|
|
||||||
*/
|
*/
|
||||||
/////////////
|
/////////////
|
||||||
|
|
||||||
|
TopoDS_Face tmpF = TopoDS::Face(exp.Current());
|
||||||
|
if ( !ChangedFaces.Contains(tmpF) )
|
||||||
|
ChangedFaces.Add(tmpF);
|
||||||
|
tmpF = TopoDS::Face(aMapFacesEdges.FindKey(i));
|
||||||
|
if ( !ChangedFaces.Contains(tmpF) )
|
||||||
|
ChangedFaces.Add(tmpF);
|
||||||
}
|
}
|
||||||
//TopoDS_Shape aRes2 = aContext->Apply(aRes1);
|
}
|
||||||
TopoDS_Shape aRes2 = myContext->Apply(aRes1);
|
|
||||||
// put new solid into global context
|
} // end processing each face
|
||||||
myContext->Replace(aSolid,aRes2);
|
|
||||||
|
// fix changed faces and replace them in the local context
|
||||||
|
for (Standard_Integer i=1; i<=ChangedFaces.Extent(); i++) {
|
||||||
|
//TopoDS_Face aFace = TopoDS::Face(aContext->Apply(ChangedFaces.FindKey(i)));
|
||||||
|
TopoDS_Face aFace = TopoDS::Face(myContext->Apply(ChangedFaces.FindKey(i)));
|
||||||
|
Handle(ShapeFix_Face) sff = new ShapeFix_Face(aFace);
|
||||||
|
sff->SetContext(myContext);
|
||||||
|
sff->SetPrecision(myTolerance);
|
||||||
|
sff->SetMinTolerance(myTolerance);
|
||||||
|
sff->SetMaxTolerance(Max(1.,myTolerance*1000.));
|
||||||
|
sff->Perform();
|
||||||
|
TopoDS_Shape aNewFace = sff->Face();
|
||||||
|
//aContext->Replace(aFace,aNewFace);
|
||||||
|
myContext->Replace(aFace,aNewFace);
|
||||||
|
//for history
|
||||||
|
/*
|
||||||
|
if (!myOldNewMap.IsBound(aFace))
|
||||||
|
{
|
||||||
|
TopTools_ListOfShape EmptyList;
|
||||||
|
myOldNewMap.Bind(aFace, EmptyList);
|
||||||
|
}
|
||||||
|
myOldNewMap(aFace).Clear();
|
||||||
|
myOldNewMap(aFace).Append(aNewFace);
|
||||||
|
*/
|
||||||
|
/////////////
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ChangedFaces.Extent() > 0) {
|
||||||
|
// fix changed shell and replace it in the local context
|
||||||
|
//TopoDS_Shape aRes1 = aContext->Apply(aRes);
|
||||||
|
TopoDS_Shape aRes1 = myContext->Apply(aRes);
|
||||||
|
TopExp_Explorer expsh;
|
||||||
|
for (expsh.Init(aRes1, TopAbs_SHELL); expsh.More(); expsh.Next()) {
|
||||||
|
TopoDS_Shell aShell = TopoDS::Shell(expsh.Current());
|
||||||
|
Handle(ShapeFix_Shell) sfsh = new ShapeFix_Shell;
|
||||||
|
sfsh->FixFaceOrientation(aShell);
|
||||||
|
TopoDS_Shape aNewShell = sfsh->Shell();
|
||||||
|
//aContext->Replace(aShell,aNewShell);
|
||||||
|
myContext->Replace(aShell,aNewShell);
|
||||||
//for history
|
//for history
|
||||||
/*
|
/*
|
||||||
if (!myOldNewMap.IsBound(aSolid))
|
if (!myOldNewMap.IsBound(aShell))
|
||||||
{
|
{
|
||||||
TopTools_ListOfShape EmptyList;
|
TopTools_ListOfShape EmptyList;
|
||||||
myOldNewMap.Bind(aSolid, EmptyList);
|
myOldNewMap.Bind(aShell, EmptyList);
|
||||||
}
|
}
|
||||||
myOldNewMap(aSolid).Clear();
|
myOldNewMap(aShell).Clear();
|
||||||
myOldNewMap(aSolid).Append(aRes2);
|
myOldNewMap(aShell).Append(aNewShell);
|
||||||
*/
|
*/
|
||||||
/////////////
|
/////////////
|
||||||
}
|
}
|
||||||
|
//TopoDS_Shape aRes2 = aContext->Apply(aRes1);
|
||||||
} // end processing each solid
|
TopoDS_Shape aRes2 = myContext->Apply(aRes1);
|
||||||
|
myContext->Replace(myShape,aRes2);
|
||||||
|
//for history
|
||||||
|
/*
|
||||||
|
if (!myOldNewMap.IsBound(aSolid))
|
||||||
|
{
|
||||||
|
TopTools_ListOfShape EmptyList;
|
||||||
|
myOldNewMap.Bind(aSolid, EmptyList);
|
||||||
|
}
|
||||||
|
myOldNewMap(aSolid).Clear();
|
||||||
|
myOldNewMap(aSolid).Append(aRes2);
|
||||||
|
*/
|
||||||
|
/////////////
|
||||||
|
}
|
||||||
|
|
||||||
myShape = myContext->Apply(myShape);
|
myShape = myContext->Apply(myShape);
|
||||||
}
|
}
|
||||||
|
12
tests/bugs/modalg_6/bug26466
Normal file
12
tests/bugs/modalg_6/bug26466
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC26466"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
#######################################################################
|
||||||
|
# UnifySameDomain creates invalid result shape from valid input shape
|
||||||
|
#######################################################################
|
||||||
|
|
||||||
|
restore [locate_data_file OCC26466-invalid_unifysamedom_input.brep] s
|
||||||
|
checkshape s
|
||||||
|
unifysamedom r s
|
||||||
|
checkshape r
|
Loading…
x
Reference in New Issue
Block a user