From ab860031bd5c0a3314c1322276749f2f66cd7b47 Mon Sep 17 00:00:00 2001 From: abv Date: Wed, 8 Oct 2014 18:52:07 +0400 Subject: [PATCH] 0025202: Incorrect value of IsClosed flag in shapes produced by some algorithms Method BRep_Tool::IsClosed() extended to analyze closure of wires in addition to shells and solids. External and Internal edges and vertices are ignored in this check. Analysis of compounds is disabled. Update of flag Closed according to actual state is added in most places where new shells are constructed. Draw-command and test case for issue CR25202 --- src/AIS/AIS_ColoredShape.cxx | 1 + src/BOPAlgo/BOPAlgo_BuilderSolid.cxx | 2 + src/BOPAlgo/BOPAlgo_Builder_3.cxx | 1 + src/BOPAlgo/BOPAlgo_ShellSplitter.cxx | 58 ++----------- src/BRep/BRep_Tool.cdl | 10 +-- src/BRep/BRep_Tool.cxx | 45 +++++++--- src/BRepAlgo/BRepAlgo_Loop.cxx | 3 + src/BRepCheck/BRepCheck_Shell.cxx | 9 +- src/BRepFeat/BRepFeat_MakeLinearForm.cxx | 2 + src/BRepFeat/BRepFeat_MakeRevolutionForm.cxx | 3 + src/BRepFeat/BRepFeat_RibSlot.cxx | 1 + src/BRepFill/BRepFill.cxx | 4 + src/BRepFill/BRepFill_Draft.cxx | 1 + src/BRepFill/BRepFill_Generator.cxx | 4 - src/BRepFill/BRepFill_Pipe.cxx | 2 + src/BRepFill/BRepFill_TrimShellCorner.cxx | 1 + src/BRepLib/BRepLib_MakeShell.cxx | 1 + src/BRepLib/BRepLib_MakeSolid.cxx | 1 + src/BRepPrim/BRepPrim_GWedge.cxx | 1 + src/BRepPrim/BRepPrim_OneAxis.cxx | 1 + .../BRepSweep_NumLinearRegularSweep.cxx | 2 + src/BRepTest/BRepTest_FeatureCommands.cxx | 4 + src/BRepTools/BRepTools_ReShape.cxx | 15 +++- src/DBRep/DBRep.cxx | 3 +- src/LocOpe/LocOpe_BuildShape.cxx | 1 + src/LocOpe/LocOpe_SplitShape.cxx | 1 + src/QABugs/QABugs_13.cxx | 1 + src/QABugs/QABugs_14.cxx | 1 + src/QABugs/QABugs_19.cxx | 84 +++++++++++++++++++ src/QABugs/QABugs_3.cxx | 2 + src/ShapeBuild/ShapeBuild_ReShape.cxx | 7 +- src/ShapeFix/ShapeFix_FaceConnect.cxx | 1 + src/ShapeFix/ShapeFix_Shell.cxx | 3 +- .../ShapeProcess_ShapeContext.cxx | 6 +- .../ShapeUpgrade_FaceDivideArea.cxx | 3 + .../ShapeUpgrade_RemoveLocations.cxx | 21 ++--- .../ShapeUpgrade_UnifySameDomain.cxx | 20 +---- src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx | 4 + src/StepToTopoDS/StepToTopoDS_Builder.cxx | 2 + .../StepToTopoDS_TranslateEdgeLoop.cxx | 1 + .../StepToTopoDS_TranslatePolyLoop.cxx | 1 + .../StepToTopoDS_TranslateShell.cxx | 1 + .../StepToTopoDS_TranslateVertexLoop.cxx | 1 + src/TNaming/TNaming_Name.cxx | 1 + src/TestTopOpe/TestTopOpe_OtherCommands.cxx | 1 + .../TopOpeBRep_ShapeIntersector.cxx | 1 + .../TopOpeBRepBuild_Builder1_2.cxx | 3 + src/XCAFPrs/XCAFPrs.cxx | 1 + src/XSControl/XSControl_Utils.cxx | 1 + tests/bugs/moddata_3/bug25202_1 | 33 ++++++++ tests/bugs/moddata_3/bug25202_2 | 21 +++++ tests/bugs/moddata_3/bug25202_3 | 21 +++++ tests/bugs/moddata_3/bug25202_4 | 22 +++++ 53 files changed, 330 insertions(+), 111 deletions(-) create mode 100755 tests/bugs/moddata_3/bug25202_1 create mode 100755 tests/bugs/moddata_3/bug25202_2 create mode 100755 tests/bugs/moddata_3/bug25202_3 create mode 100755 tests/bugs/moddata_3/bug25202_4 diff --git a/src/AIS/AIS_ColoredShape.cxx b/src/AIS/AIS_ColoredShape.cxx index d6784a74b6..84e8afd594 100644 --- a/src/AIS/AIS_ColoredShape.cxx +++ b/src/AIS/AIS_ColoredShape.cxx @@ -369,6 +369,7 @@ Standard_Boolean AIS_ColoredShape::dispatchColors (const TopoDS_Shape& th // iterate on sub-shapes BRep_Builder aBBuilder; TopoDS_Shape aShapeCopy = theSubshapeToParse.EmptyCopied(); + aShapeCopy.Closed (theSubshapeToParse.Closed()); Standard_Boolean isSubOverride = Standard_False; Standard_Integer nbDef = 0; for (TopoDS_Iterator it (theSubshapeToParse); it.More(); it.Next()) diff --git a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx index c285298a93..42b079a784 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx +++ b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx @@ -559,6 +559,7 @@ void BOPAlgo_BuilderSolid::PerformLoops() } } } + aShell.Closed (BRep_Tool::IsClosed (aShell)); myLoopsInternal.Append(aShell); } } @@ -1018,6 +1019,7 @@ void MakeInternalShells(const BOPCol_MapOfShape& theMF, } } } + aShell.Closed (BRep_Tool::IsClosed (aShell)); theShells.Append(aShell); } } diff --git a/src/BOPAlgo/BOPAlgo_Builder_3.cxx b/src/BOPAlgo/BOPAlgo_Builder_3.cxx index d729ef8222..decfb308d9 100644 --- a/src/BOPAlgo/BOPAlgo_Builder_3.cxx +++ b/src/BOPAlgo/BOPAlgo_Builder_3.cxx @@ -475,6 +475,7 @@ void BOPAlgo_Builder::BuildDraftSolid(const TopoDS_Shape& theSolid, } //for (; aIt2.More(); aIt2.Next()) { // if (iFlag) { + aShD.Closed (BRep_Tool::IsClosed (aShD)); aBB.Add(theDraftSolid, aShD); } } //for (; aIt1.More(); aIt1.Next()) { diff --git a/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx b/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx index b1b8a3b1b7..a27392f55d 100644 --- a/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx +++ b/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx @@ -38,9 +38,6 @@ #include #include -// -static - Standard_Boolean IsClosedShell(const TopoDS_Shell& ); // static void MakeShell(const BOPCol_ListOfShape& , @@ -444,12 +441,14 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) } // for (; aExp.More(); aExp.Next()) { } // for (; aItS.More(); aItS.Next()) { // - if (IsClosedShell(aShell)) { + if (BRep_Tool::IsClosed(aShell)) { + aShell.Closed (Standard_True); myLoops.Append(aShell); } else { RefineShell(aShell); - if (IsClosedShell(aShell)) { + if (BRep_Tool::IsClosed(aShell)) { + aShell.Closed (Standard_True); myLoops.Append(aShell); } } @@ -556,48 +555,7 @@ void RefineShell(TopoDS_Shell& theShell) aBB.Remove(theShell, aFB); } } -//======================================================================= -//function : IsClosedShell -//purpose : -//======================================================================= -Standard_Boolean IsClosedShell(const TopoDS_Shell& theShell) -{ - Standard_Integer i, aNbE; - Standard_Boolean bRet; - TopoDS_Iterator aIt; - TopExp_Explorer aExp; - BOPCol_MapOfShape aM; - // - bRet=Standard_False; - // - aIt.Initialize(theShell); - for(i=0; aIt.More(); aIt.Next(), ++i) { - const TopoDS_Shape& aF=aIt.Value(); - // - aExp.Init(aF, TopAbs_EDGE); - for (; aExp.More(); aExp.Next()) { - const TopoDS_Edge& aE=(*(TopoDS_Edge*)(&aExp.Current())); - if (BRep_Tool::Degenerated(aE)) { - continue; - } - // - if (aE.Orientation()==TopAbs_INTERNAL) { - continue; - } - if (!aM.Add(aE)) { - aM.Remove(aE); - } - } - } - // - if(i) { - aNbE=aM.Extent(); - if (!aNbE) { - bRet=!bRet; - } - } - return bRet; -} + //======================================================================= //function : MakeShells //purpose : @@ -622,7 +580,7 @@ void BOPAlgo_ShellSplitter::MakeShells() // const BOPCol_ListOfShape& aLF=aCB.Shapes(); MakeShell(aLF, aShell); - aShell.TShape()->Closed(Standard_True); + aShell.Closed(Standard_True); myShells.Append(aShell); } else { @@ -641,8 +599,8 @@ void BOPAlgo_ShellSplitter::MakeShells() const BOPCol_ListOfShape& aLS=aCB.Loops(); aIt.Initialize(aLS); for (; aIt.More(); aIt.Next()) { - const TopoDS_Shape& aShell=aIt.Value(); - aShell.TShape()->Closed(Standard_True); + TopoDS_Shape& aShell=aIt.ChangeValue(); + aShell.Closed(Standard_True); myShells.Append(aShell); } } diff --git a/src/BRep/BRep_Tool.cdl b/src/BRep/BRep_Tool.cdl index 3e7de745ce..84c6c81704 100644 --- a/src/BRep/BRep_Tool.cdl +++ b/src/BRep/BRep_Tool.cdl @@ -53,10 +53,10 @@ is ----------------------------------------------------------- ----------------------------------------------------------- IsClosed (myclass; S : Shape from TopoDS) returns Boolean from Standard; - - ---Purpose: Returns if S if flaged Closed, if S is a - -- Solid,Shell or Compound returns is S has no free boundaries. - + ---Purpose: If S is Solid or Shell, returns True if it has no free boundaries (edges). + -- If S is Wire, returns True if it has no free ends (vertices). + -- (Internal and External sub-shepes are ignored in this check.) + -- For other shape types returns S.Closed(). ----------------------------------------------------------- ----------------------------------------------------------- @@ -603,7 +603,5 @@ is raises NullObject from Standard; - - end Tool; diff --git a/src/BRep/BRep_Tool.cxx b/src/BRep/BRep_Tool.cxx index ac3875e8b7..f025a17407 100644 --- a/src/BRep/BRep_Tool.cxx +++ b/src/BRep/BRep_Tool.cxx @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -52,6 +53,10 @@ #include #include +#include +#include +#include + //modified by NIZNHY-PKV Fri Oct 17 14:13:29 2008f static Standard_Boolean IsPlane(const Handle(Geom_Surface)& aS); @@ -1446,24 +1451,37 @@ gp_Pnt2d BRep_Tool::Parameters(const TopoDS_Vertex& V, } //======================================================================= //function : IsClosed -//purpose : Returns if S if flaged Closed, if S is a -// Solid,Shell or Compound returns is S has no free boundaries. +//purpose : //======================================================================= -Standard_Boolean BRep_Tool::IsClosed(const TopoDS_Shape& S) +Standard_Boolean BRep_Tool::IsClosed (const TopoDS_Shape& theShape) { - if (S.ShapeType() == TopAbs_SHELL || S.ShapeType() == TopAbs_SOLID || - S.ShapeType() == TopAbs_COMPOUND) { - TopTools_MapOfShape M; - TopExp_Explorer exp; - for (exp.Init(S,TopAbs_EDGE); exp.More(); exp.Next()) { -// for (TopExp_Explorer exp(S,TopAbs_EDGE); exp.More(); exp.Next()) { + if (theShape.ShapeType() == TopAbs_SHELL || theShape.ShapeType() == TopAbs_SOLID) + { + NCollection_Map aMap (101, new NCollection_IncAllocator); + for (TopExp_Explorer exp (theShape, TopAbs_EDGE); exp.More(); exp.Next()) + { const TopoDS_Edge& E = TopoDS::Edge(exp.Current()); - if (BRep_Tool::Degenerated(E)) continue; - if (!M.Add(E)) M.Remove(E); + if (BRep_Tool::Degenerated(E) || E.Orientation() == TopAbs_INTERNAL || E.Orientation() == TopAbs_EXTERNAL) + continue; + if (!aMap.Add(E)) + aMap.Remove(E); } - if ( M.IsEmpty()) return 1; + return aMap.IsEmpty(); } - return (S.Closed()); + else if (theShape.ShapeType() == TopAbs_WIRE) + { + NCollection_Map aMap (101, new NCollection_IncAllocator); + for (TopExp_Explorer exp (theShape, TopAbs_VERTEX); exp.More(); exp.Next()) + { + const TopoDS_Shape& V = exp.Current(); + if (V.Orientation() == TopAbs_INTERNAL || V.Orientation() == TopAbs_EXTERNAL) + continue; + if (!aMap.Add(V)) + aMap.Remove(V); + } + return aMap.IsEmpty(); + } + return theShape.Closed(); } //modified by NIZNHY-PKV Fri Oct 17 14:09:58 2008 f @@ -1495,3 +1513,4 @@ Standard_Boolean IsPlane(const Handle(Geom_Surface)& aS) // return bRet; } + diff --git a/src/BRepAlgo/BRepAlgo_Loop.cxx b/src/BRepAlgo/BRepAlgo_Loop.cxx index 5eee879036..187d7a8eeb 100644 --- a/src/BRepAlgo/BRepAlgo_Loop.cxx +++ b/src/BRepAlgo/BRepAlgo_Loop.cxx @@ -658,7 +658,10 @@ void BRepAlgo_Loop::Perform() } if (VF.IsSame(CV) && SamePnt2d(VF,EF,CE,myFace)) + { + NW.Closed (Standard_True); myNewWires.Append (NW); + } #ifdef DEBUG_ALGO else { cout <<"BRepAlgo_Loop: Open Wire"<Pln(),w, Standard_True); mySkface = F; @@ -768,6 +769,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase, for(; it.More(); it.Next()) { BB.Add(comp, it.Value()); } + comp.Closed (BRep_Tool::IsClosed (comp)); mySUntil = comp; diff --git a/src/BRepFeat/BRepFeat_MakeRevolutionForm.cxx b/src/BRepFeat/BRepFeat_MakeRevolutionForm.cxx index 5d14b7090b..bee84acf15 100644 --- a/src/BRepFeat/BRepFeat_MakeRevolutionForm.cxx +++ b/src/BRepFeat/BRepFeat_MakeRevolutionForm.cxx @@ -831,6 +831,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase, if(Sliding) { TopoDS_Face F; BB.MakeFace(F, myPln, myTol); + w.Closed (BRep_Tool::IsClosed (w)); BB.Add(F, w); mySkface = F; myPbase = mySkface; @@ -914,6 +915,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase, break; } } + Wiwiwi.Closed (BRep_Tool::IsClosed (Wiwiwi)); BRepLib_MakeFace newbndface(myPln->Pln(), Wiwiwi, Standard_True); TopoDS_Face NewBndFace = TopoDS::Face(newbndface.Shape()); @@ -993,6 +995,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase, for(; it.More(); it.Next()) { BB.Add(comp, it.Value()); } + comp.Closed (BRep_Tool::IsClosed (comp)); mySUntil = comp; diff --git a/src/BRepFeat/BRepFeat_RibSlot.cxx b/src/BRepFeat/BRepFeat_RibSlot.cxx index e40320a8d3..5d8609cd6f 100644 --- a/src/BRepFeat/BRepFeat_RibSlot.cxx +++ b/src/BRepFeat/BRepFeat_RibSlot.cxx @@ -2297,6 +2297,7 @@ Standard_Boolean BRepFeat_RibSlot::NoSlidingProfile(TopoDS_Face& Prof, BB.Add(w, e); } + w.Closed (BRep_Tool::IsClosed (w)); BRepLib_MakeFace fa(myPln->Pln(), w, Standard_True); TopoDS_Face fac = TopoDS::Face(fa.Shape()); diff --git a/src/BRepFill/BRepFill.cxx b/src/BRepFill/BRepFill.cxx index 95feb61426..e3055c9cf5 100644 --- a/src/BRepFill/BRepFill.cxx +++ b/src/BRepFill/BRepFill.cxx @@ -122,6 +122,7 @@ static void MakeWire(const TopTools_Array1OfShape& Edges, } } newwire.Orientation(TopAbs_FORWARD); + newwire.Closed (Standard_True); } static void CutEdge(const TopoDS_Edge& CurrentEdge, @@ -349,6 +350,7 @@ TopoDS_Face BRepFill::Face(const TopoDS_Edge& Edge1, B.Add(W,Edge4); B.Add(W,Edge2.Reversed()); B.Add(W,Edge3); + W.Closed (Standard_True); B.Add(Face,W); @@ -562,6 +564,7 @@ TopoDS_Shell BRepFill::Shell(const TopoDS_Wire& Wire1, B.Add(W,Edge4); B.Add(W,Edge2.Reversed()); B.Add(W,Edge3); + W.Closed (Standard_True); B.Add(Face,W); @@ -617,6 +620,7 @@ TopoDS_Shell BRepFill::Shell(const TopoDS_Wire& Wire1, B.SameRange(Edge4,Standard_False); } + Shell.Closed (BRep_Tool::IsClosed (Shell)); BRepLib::SameParameter(Shell); return Shell; } diff --git a/src/BRepFill/BRepFill_Draft.cxx b/src/BRepFill/BRepFill_Draft.cxx index a0a0ee855a..35a90d4e9b 100644 --- a/src/BRepFill/BRepFill_Draft.cxx +++ b/src/BRepFill/BRepFill_Draft.cxx @@ -616,6 +616,7 @@ static Standard_Boolean GoodOrientation(const Bnd_Box& B, TopoDS_Shell S; B.MakeShell(S); B.Add(S, StopShape); + S.Closed (BRep_Tool::IsClosed (S)); B.MakeSolid(Sol2); B.Add(Sol2, S); // shell => solid (for fusion) break; diff --git a/src/BRepFill/BRepFill_Generator.cxx b/src/BRepFill/BRepFill_Generator.cxx index 0ddbfd5ba3..e919b39b52 100644 --- a/src/BRepFill/BRepFill_Generator.cxx +++ b/src/BRepFill/BRepFill_Generator.cxx @@ -381,14 +381,10 @@ void CreateKPart(const TopoDS_Edge& Edge1,const TopoDS_Edge& Edge2, } // create the new surface - TopoDS_Shell shell; TopoDS_Face face; TopoDS_Wire W; TopoDS_Edge edge1, edge2, edge3, edge4, couture; - BRep_Builder B; - B.MakeShell(shell); - TopoDS_Wire newW1, newW2; BRep_Builder BW1, BW2; BW1.MakeWire(newW1); diff --git a/src/BRepFill/BRepFill_Pipe.cxx b/src/BRepFill/BRepFill_Pipe.cxx index 8d8e5eef89..0cd81f3d6f 100644 --- a/src/BRepFill/BRepFill_Pipe.cxx +++ b/src/BRepFill/BRepFill_Pipe.cxx @@ -589,6 +589,7 @@ TopoDS_Shape BRepFill_Pipe::MakeShape(const TopoDS_Shape& S, W.Closed(LastShape.Closed()); TheLast = W; } + result.Closed (BRep_Tool::IsClosed (result)); break; } @@ -603,6 +604,7 @@ TopoDS_Shape BRepFill_Pipe::MakeShape(const TopoDS_Shape& S, if ( !mySpine.Closed() && !TheFirst.IsNull()) { B.Add(result, TheFirst.Reversed()); } + result.Closed (BRep_Tool::IsClosed (result)); break; } diff --git a/src/BRepFill/BRepFill_TrimShellCorner.cxx b/src/BRepFill/BRepFill_TrimShellCorner.cxx index 23cb58149b..716ae2a7bb 100644 --- a/src/BRepFill/BRepFill_TrimShellCorner.cxx +++ b/src/BRepFill/BRepFill_TrimShellCorner.cxx @@ -285,6 +285,7 @@ void BRepFill_TrimShellCorner::Perform() for(ii = myFaces->LowerRow(); ii <= myFaces->UpperRow(); ii++) { aBB.Add(aShell, myFaces->Value(ii, jj)); } + aShell.Closed (BRep_Tool::IsClosed (aShell)); if(jj == myFaces->LowerCol()) { myShape1 = aShell; diff --git a/src/BRepLib/BRepLib_MakeShell.cxx b/src/BRepLib/BRepLib_MakeShell.cxx index c1a9dc8d40..446f887b1d 100644 --- a/src/BRepLib/BRepLib_MakeShell.cxx +++ b/src/BRepLib/BRepLib_MakeShell.cxx @@ -353,6 +353,7 @@ void BRepLib_MakeShell::Init(const Handle(Geom_Surface)& S, // codage des courbes 3d et regularites. BRepLib::BuildCurves3d(myShape,tol); BRepLib::EncodeRegularity(myShape); + myShape.Closed (BRep_Tool::IsClosed (myShape)); myError = BRepLib_ShellDone; Done(); diff --git a/src/BRepLib/BRepLib_MakeSolid.cxx b/src/BRepLib/BRepLib_MakeSolid.cxx index abbd9d72cf..6d1f6c908c 100644 --- a/src/BRepLib/BRepLib_MakeSolid.cxx +++ b/src/BRepLib/BRepLib_MakeSolid.cxx @@ -63,6 +63,7 @@ BRepLib_MakeSolid::BRepLib_MakeSolid(const TopoDS_CompSolid& S) for(; aFaceIter.More(); aFaceIter.Next()) { B.Add(aShell, aFaceIter.Key()); } + aShell.Closed (BRep_Tool::IsClosed (aShell)); B.Add(myShape,aShell); diff --git a/src/BRepPrim/BRepPrim_GWedge.cxx b/src/BRepPrim/BRepPrim_GWedge.cxx index f4ced3893a..1b8762a125 100644 --- a/src/BRepPrim/BRepPrim_GWedge.cxx +++ b/src/BRepPrim/BRepPrim_GWedge.cxx @@ -318,6 +318,7 @@ const TopoDS_Shell& BRepPrim_GWedge::Shell() { if (HasFace(BRepPrim_ZMax)) myBuilder.AddShellFace(myShell,Face(BRepPrim_ZMax)); + myShell.Closed (BRep_Tool::IsClosed (myShell)); myBuilder.CompleteShell(myShell); ShellBuilt = Standard_True; } diff --git a/src/BRepPrim/BRepPrim_OneAxis.cxx b/src/BRepPrim/BRepPrim_OneAxis.cxx index b7bace22a4..596dc949de 100644 --- a/src/BRepPrim/BRepPrim_OneAxis.cxx +++ b/src/BRepPrim/BRepPrim_OneAxis.cxx @@ -291,6 +291,7 @@ const TopoDS_Shell& BRepPrim_OneAxis::Shell() myBuilder.AddShellFace(myShell,EndFace()); } + myShell.Closed (BRep_Tool::IsClosed (myShell)); myBuilder.CompleteShell(myShell); ShellBuilt = Standard_True; } diff --git a/src/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx b/src/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx index 8b4566f478..21c5c30489 100644 --- a/src/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx +++ b/src/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx @@ -337,6 +337,7 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS, SetContinuity(aGenS,aDirS); } if (aGenSType==TopAbs_FACE){ + newShell.Closed (BRep_Tool::IsClosed (newShell)); TopoDS_Shape temp = SplitShell(newShell); TopAbs_Orientation Or = DirectSolid(aGenS,aDirS); Lt.Init(temp); @@ -392,6 +393,7 @@ TopoDS_Shape BRepSweep_NumLinearRegularSweep::Shape (const TopoDS_Shape& aGenS, } myBuiltShapes(iGenS,iDirS) = Standard_True; } + myShapes(iGenS,iDirS).Closed (BRep_Tool::IsClosed (myShapes(iGenS,iDirS))); return myShapes(iGenS,iDirS); } diff --git a/src/BRepTest/BRepTest_FeatureCommands.cxx b/src/BRepTest/BRepTest_FeatureCommands.cxx index c4df4eb297..97acc216d0 100644 --- a/src/BRepTest/BRepTest_FeatureCommands.cxx +++ b/src/BRepTest/BRepTest_FeatureCommands.cxx @@ -433,6 +433,7 @@ static Standard_Integer PRW(Draw_Interpretor& theCommands, for (it.Initialize(lleft);it.More();it.Next()) { B.Add(Sh,TopoDS::Face(it.Value())); } + Sh.Closed (BRep_Tool::IsClosed (Sh)); thePFace.Init(S,Sh,F,V,fuse,Standard_True); ToPrism = Sh; } @@ -590,6 +591,7 @@ static Standard_Integer PRF(Draw_Interpretor& theCommands, B.Add(She,F); } } + She.Closed (BRep_Tool::IsClosed (She)); thePFace.Init(S,She,TopoDS_Face(),V,fuse,Standard_False); ToPrism = She; } @@ -1197,6 +1199,7 @@ static Standard_Integer ROW(Draw_Interpretor& theCommands, for (it.Initialize(lleft);it.More();it.Next()) { B.Add(Sh,TopoDS::Face(it.Value())); } + Sh.Closed (BRep_Tool::IsClosed (Sh)); theRFace.Init(S,Sh,F,theAxis,fuse,Standard_True); ToRotate = Sh; } @@ -1341,6 +1344,7 @@ static Standard_Integer ROF(Draw_Interpretor& theCommands, B.Add(She,F); } } + She.Closed (BRep_Tool::IsClosed (She)); theRFace.Init(S,She,TopoDS_Face(),theAxis,fuse,Standard_False); ToRotate = She; } diff --git a/src/BRepTools/BRepTools_ReShape.cxx b/src/BRepTools/BRepTools_ReShape.cxx index a21b745ecc..4e17db8896 100644 --- a/src/BRepTools/BRepTools_ReShape.cxx +++ b/src/BRepTools/BRepTools_ReShape.cxx @@ -371,9 +371,14 @@ TopoDS_Shape BRepTools_ReShape::Apply (const TopoDS_Shape& shape, B.Add (S,newsh); } } + if ( (modif < 0 && buildmode < 2) || (modif == 0 && buildmode < 1) ) return C; - else return S; + else + { + S.Closed (BRep_Tool::IsClosed (S)); + return S; + } } if (st == TopAbs_SHELL) { @@ -406,7 +411,11 @@ TopoDS_Shape BRepTools_ReShape::Apply (const TopoDS_Shape& shape, } if ( (modif < 0 && buildmode < 2) || (modif == 0 && buildmode < 1) ) return C; - else return S; + else + { + S.Closed (BRep_Tool::IsClosed (S)); + return S; + } } cout<<"BRepTools_ReShape::Apply NOT YET IMPLEMENTED"< +static Standard_Integer OCC25202 ( Draw_Interpretor& theDI, + Standard_Integer theArgN, + const char** theArgVal) +{ + // 0 1 2 3 4 5 6 + //reshape res shape numF1 face1 numF2 face2 + if(theArgN < 7) + { + theDI << "Use: reshape res shape numF1 face1 numF2 face2\n"; + return 1; + } + + TopoDS_Shape aShape = DBRep::Get(theArgVal[2]); + const Standard_Integer aNumOfRE1 = Draw::Atoi(theArgVal[3]), + aNumOfRE2 = Draw::Atoi(theArgVal[5]); + TopoDS_Face aShapeForRepl1 = TopoDS::Face(DBRep::Get(theArgVal[4])), + aShapeForRepl2 = TopoDS::Face(DBRep::Get(theArgVal[6])); + + if(aShape.IsNull()) + { + theDI << theArgVal[2] << " is null shape\n"; + return 1; + } + + if(aShapeForRepl1.IsNull()) + { + theDI << theArgVal[4] << " is not a replaced type\n"; + return 1; + } + + if(aShapeForRepl2.IsNull()) + { + theDI << theArgVal[6] << " is not a replaced type\n"; + return 1; + } + + + TopoDS_Shape aReplacedShape; + ShapeBuild_ReShape aReshape; + + //////////////////// explode (begin) + TopTools_MapOfShape M; + M.Add(aShape); + Standard_Integer aNbShapes = 0; + for (TopExp_Explorer ex(aShape,TopAbs_FACE); ex.More(); ex.Next()) + { + const TopoDS_Shape& Sx = ex.Current(); + Standard_Boolean added = M.Add(Sx); + if (added) + { + aNbShapes++; + if(aNbShapes == aNumOfRE1) + { + aReplacedShape = Sx; + + aReshape.Replace(aReplacedShape, aShapeForRepl1); + } + + if(aNbShapes == aNumOfRE2) + { + aReplacedShape = Sx; + + aReshape.Replace(aReplacedShape, aShapeForRepl2); + } + } + } + //////////////////// explode (end) + + if(aReplacedShape.IsNull()) + { + theDI << "There is not any shape for replacing.\n"; + } + + DBRep::Set (theArgVal[1],aReshape.Apply (aShape,TopAbs_WIRE,2)); + + return 0; +} + /*****************************************************************************/ void QABugs::Commands_19(Draw_Interpretor& theCommands) { @@ -2834,5 +2917,6 @@ void QABugs::Commands_19(Draw_Interpretor& theCommands) { theCommands.Add ("OCC23010", "OCC23010 STEP_file", __FILE__, OCC23010, group); theCommands.Add ("OCC25043", "OCC25043 shape", __FILE__, OCC25043, group); theCommands.Add ("OCC24606", "OCC24606 : Tests ::FitAll for V3d view ('vfit' is for NIS view)", __FILE__, OCC24606, group); + theCommands.Add ("OCC25202", "OCC25202 res shape numF1 face1 numF2 face2", __FILE__, OCC25202, group); return; } diff --git a/src/QABugs/QABugs_3.cxx b/src/QABugs/QABugs_3.cxx index f3313bbcef..b4438aff67 100644 --- a/src/QABugs/QABugs_3.cxx +++ b/src/QABugs/QABugs_3.cxx @@ -734,6 +734,7 @@ static Standard_Integer BUC60811(Draw_Interpretor& di, Standard_Integer argc, co TopoDS_Shell shell; B.MakeShell(shell); B.Add(shell, bzf1); + shell.Closed (BRep_Tool::IsClosed (shell)); B.MakeSolid(solid); B.Add(solid,shell); gp_Dir D(0, 0, 1.0f); @@ -1775,6 +1776,7 @@ static Standard_Integer BUC60951_(Draw_Interpretor& di, Standard_Integer argc, c TopoDS_Face face = TopoDS::Face(list.FindKey(i)); builder.Add(shell, face); } + shell.Closed (BRep_Tool::IsClosed (shell)); BRepPrimAPI_MakeHalfSpace half(shell, gp_Pnt(0, 0, 20)); TopoDS_Solid sol = half.Solid(); diff --git a/src/ShapeBuild/ShapeBuild_ReShape.cxx b/src/ShapeBuild/ShapeBuild_ReShape.cxx index 7cd238d6a7..a82f68297f 100644 --- a/src/ShapeBuild/ShapeBuild_ReShape.cxx +++ b/src/ShapeBuild/ShapeBuild_ReShape.cxx @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -69,8 +70,8 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, // if shape replaced, apply modifications to the result recursively Standard_Boolean aConsLoc = ModeConsiderLocation(); if ( (aConsLoc && ! newsh.IsPartner (shape)) || - (!aConsLoc &&! newsh.IsSame ( shape )) ) { - + (!aConsLoc &&! newsh.IsSame ( shape )) ) + { TopoDS_Shape res = Apply ( newsh, until ); myStatus |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE1 ); return res; @@ -124,8 +125,10 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, sbe.CopyRanges ( TopoDS::Edge ( result ), TopoDS::Edge ( shape )); } result.Orientation(orient); + result.Closed (BRep_Tool::IsClosed (result)); myStatus = locStatus; Replace ( shape, result ); + return result; } diff --git a/src/ShapeFix/ShapeFix_FaceConnect.cxx b/src/ShapeFix/ShapeFix_FaceConnect.cxx index 6aa226b379..6dea09dcd9 100644 --- a/src/ShapeFix/ShapeFix_FaceConnect.cxx +++ b/src/ShapeFix/ShapeFix_FaceConnect.cxx @@ -543,6 +543,7 @@ ShapeFix_FaceConnect::ShapeFix_FaceConnect() {} if (SFF->FixOrientation(MapWires)) EmpFace = SFF->Face(); theBuilder.Add(theShell,EmpFace); } + theShell.Closed (BRep_Tool::IsClosed (theShell)); result = theShell; if (!theRepVertices.IsEmpty()) { diff --git a/src/ShapeFix/ShapeFix_Shell.cxx b/src/ShapeFix/ShapeFix_Shell.cxx index 82837b0032..5a03b46644 100644 --- a/src/ShapeFix/ShapeFix_Shell.cxx +++ b/src/ShapeFix/ShapeFix_Shell.cxx @@ -269,11 +269,12 @@ static Standard_Boolean GetShells(TopTools_SequenceOfShape& Lface, } j++; B.Add(nshell,F1); + nshell.Closed (BRep_Tool::IsClosed (nshell)); aMapFaceShells.Bind(F1,nshell); Lface.Remove(i); // if closed shell is obtained it adds to sequence of shells and new shell begin to construct. - if(isMultiConnex && BRep_Tool::IsClosed(nshell)) { + if(isMultiConnex && nshell.Closed()) { aSeqShells.Append(nshell); TopoDS_Shell nshellnext; B.MakeShell(nshellnext); diff --git a/src/ShapeProcess/ShapeProcess_ShapeContext.cxx b/src/ShapeProcess/ShapeProcess_ShapeContext.cxx index 24d7707e60..8b60bb7ffc 100644 --- a/src/ShapeProcess/ShapeProcess_ShapeContext.cxx +++ b/src/ShapeProcess/ShapeProcess_ShapeContext.cxx @@ -208,7 +208,11 @@ static void RecModif (const TopoDS_Shape &S, } else B.Add ( result, sh ); } - if ( modif ) res = result; + if ( modif ) + { + result.Closed (BRep_Tool::IsClosed (result)); + res = result; + } } if ( res != r ) map.Bind ( S.Located(aNullLoc), res ); diff --git a/src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx b/src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx index e39349b786..12ea362a5c 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx @@ -96,7 +96,10 @@ ShapeUpgrade_FaceDivideArea::ShapeUpgrade_FaceDivideArea(const TopoDS_Face& F) aB.Add(aCopyRes,aFace); } if(isModified) + { + aCopyRes.Closed (BRep_Tool::IsClosed (aCopyRes)); Context()->Replace(aResult,aCopyRes); + } myStatus |= aStatus; myResult = Context()->Apply ( aResult ); return Status ( ShapeExtend_DONE ); diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx b/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx index 60f73dc75a..d199cd5f8b 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx @@ -190,11 +190,9 @@ Standard_Boolean ShapeUpgrade_RemoveLocations::MakeNewShape(const TopoDS_Shape& aNewShape.Location(aL); } if(shtype != TopAbs_EDGE) { - theNewShape = aNewShape; - - return Standard_True; - } + return Standard_True; + } } @@ -251,8 +249,12 @@ Standard_Boolean ShapeUpgrade_RemoveLocations::MakeNewShape(const TopoDS_Shape& //Removing location from sub-shapes in dependance of LevelRemoving and re-building shape. if(!isBound) { - if(!aRebuild) - aNewShape = theShape.EmptyCopied(); + if(!aRebuild) + { + aNewShape = theShape.EmptyCopied(); + // it is safe to simply copy Closed flag since this operation does not change topology + aNewShape.Closed (theShape.Closed()); + } TopLoc_Location oldLoc,nullloc; oldLoc = theShape.Location(); if(!oldLoc.IsIdentity()) @@ -266,19 +268,18 @@ Standard_Boolean ShapeUpgrade_RemoveLocations::MakeNewShape(const TopoDS_Shape& Standard_Boolean isDoneSubShape = MakeNewShape(subshape,anAncShape,anewsubshape,isRemoveLoc); isDone = (isDone || isDoneSubShape); aB.Add(aNewShape,anewsubshape); - } if(isDone) aNewShape.Orientation(orient); - else aNewShape = aShape; + else + aNewShape = aShape; myMapNewShapes.Bind(aShape,aNewShape); if(!theRemoveLoc && !oldLoc.IsIdentity()) aNewShape.Location(oldLoc); } theNewShape = aNewShape; - - + return (isDone || isBound); } diff --git a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx b/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx index f6b9ebffce..66c86f1bc3 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx @@ -708,21 +708,6 @@ static Standard_Boolean MergeEdges(const TopTools_SequenceOfShape& SeqEdges, cout<<"can not make analitical union => make approximation"<Apply(aWire)); + aWire.Closed (BRep_Tool::IsClosed (aWire)); aWire = TopoDS::Wire(myContext->Apply(aWire)); - //TopoDS_Face tmpF = TopoDS::Face(aContext->Apply(faces(1).Oriented(TopAbs_FORWARD))); TopoDS_Face tmpF = TopoDS::Face(myContext->Apply(faces(1).Oriented(TopAbs_FORWARD))); Handle(ShapeFix_Wire) sfw = new ShapeFix_Wire(aWire,tmpF,Precision::Confusion()); sfw->FixReorder(); @@ -1021,6 +1005,7 @@ void ShapeUpgrade_UnifySameDomain::UnifyFaces() TopoDS_Wire aW; B.MakeWire(aW); B.Add(aW,E); + aW.Closed (Standard_True); B.Add(aResult,aW); } } @@ -1091,6 +1076,7 @@ void ShapeUpgrade_UnifySameDomain::UnifyFaces() B.MakeShell ( S ); for ( i=1; i <= parts.Length(); i++ ) B.Add ( S, parts(i) ); + S.Closed (BRep_Tool::IsClosed (S)); CompRes = S; } else CompRes = parts(1); diff --git a/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx b/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx index db7692a60b..9a3a497b69 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx @@ -714,13 +714,17 @@ void ShapeUpgrade_WireDivide::Perform () V1 = V; } if(numE) + { + resWire.Closed (BRep_Tool::IsClosed (resWire)); Context()->Replace(E,resWire); + } else Context()->Remove(E); } } if ( Status ( ShapeExtend_DONE ) ) { //smh#8 + newWire.Closed (BRep_Tool::IsClosed (newWire)); TopoDS_Shape tmpW = Context()->Apply ( newWire ).Oriented(myWire.Orientation()); myWire = TopoDS::Wire (tmpW ); } diff --git a/src/StepToTopoDS/StepToTopoDS_Builder.cxx b/src/StepToTopoDS/StepToTopoDS_Builder.cxx index 60a57d908d..d016b5500a 100644 --- a/src/StepToTopoDS/StepToTopoDS_Builder.cxx +++ b/src/StepToTopoDS/StepToTopoDS_Builder.cxx @@ -614,6 +614,7 @@ void StepToTopoDS_Builder::Init (const Handle(StepShape_EdgeBasedWireframeModel) B.Add ( W, E ); } if ( W.IsNull() ) continue; + W.Closed (BRep_Tool::IsClosed (W)); B.Add ( C, W ); if ( myResult.IsNull() ) myResult = W; else myResult = C; @@ -675,6 +676,7 @@ void StepToTopoDS_Builder::Init (const Handle(StepShape_FaceBasedSurfaceModel)& B.Add ( S, F ); } if ( S.IsNull() ) continue; + S.Closed (BRep_Tool::IsClosed (S)); B.Add ( C, S ); if ( myResult.IsNull() ) myResult = S; else myResult = C; diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx b/src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx index f8dc4802e7..f4cbd87f22 100644 --- a/src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx +++ b/src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx @@ -675,6 +675,7 @@ void StepToTopoDS_TranslateEdgeLoop::Init(const Handle(StepShape_FaceBound)& Fac TP->AddFail(EL,"At least one edge failed : wire not done"); return; } + W.Closed (BRep_Tool::IsClosed (W)); aTool.Bind(EL, W); // ---------------------------------------------- diff --git a/src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx b/src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx index febeeae1c4..bf613012dc 100644 --- a/src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx +++ b/src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx @@ -170,6 +170,7 @@ void StepToTopoDS_TranslatePolyLoop::Init(const Handle(StepShape_PolyLoop)& PL, GP1 = GP2; V1 = V2; } + W.Closed (BRep_Tool::IsClosed (W)); aTool.Bind(PL, W); myResult = W; myError = StepToTopoDS_TranslatePolyLoopDone; diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateShell.cxx b/src/StepToTopoDS/StepToTopoDS_TranslateShell.cxx index b315530fb2..4b4542ed37 100644 --- a/src/StepToTopoDS/StepToTopoDS_TranslateShell.cxx +++ b/src/StepToTopoDS/StepToTopoDS_TranslateShell.cxx @@ -103,6 +103,7 @@ void StepToTopoDS_TranslateShell::Init TP->AddWarning(StepFace," Face is not of FaceSurface Type; not mapped to TopoDS"); } } + Sh.Closed (BRep_Tool::IsClosed (Sh)); myResult = Sh; aTool.Bind(CFS, myResult); myError = StepToTopoDS_TranslateShellDone; diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx b/src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx index 37efffd88f..46e50e31c8 100644 --- a/src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx +++ b/src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx @@ -89,6 +89,7 @@ void StepToTopoDS_TranslateVertexLoop::Init(const Handle(StepShape_VertexLoop)& B.Degenerated(E, Standard_True); B.MakeWire(W); + W.Closed (Standard_True); B.Add(W, E); aTool.Bind(VL, W); myResult = W; diff --git a/src/TNaming/TNaming_Name.cxx b/src/TNaming/TNaming_Name.cxx index 7caca2eb26..172a3a75a2 100644 --- a/src/TNaming/TNaming_Name.cxx +++ b/src/TNaming/TNaming_Name.cxx @@ -465,6 +465,7 @@ static TopoDS_Shape ShapeWithType(const TopoDS_Shape theShape, TopoDS_Shell aShell; aShellBuilder.MakeShell(aShell); for(;aListIter.More();aListIter.Next()) aShellBuilder.Add(aShell,TopoDS::Face(aListIter.Value())); + aShell.Closed (BRep_Tool::IsClosed (aShell)); if (theType == TopAbs_SHELL) return aShell; aShapes.Clear(); // don't break: we can do something more of it aShapes.Append(aShell); diff --git a/src/TestTopOpe/TestTopOpe_OtherCommands.cxx b/src/TestTopOpe/TestTopOpe_OtherCommands.cxx index 2352b914ff..2912d68bd5 100644 --- a/src/TestTopOpe/TestTopOpe_OtherCommands.cxx +++ b/src/TestTopOpe/TestTopOpe_OtherCommands.cxx @@ -187,6 +187,7 @@ Standard_Integer MKSOLSHE(Draw_Interpretor&, Standard_Integer narg, const char** if (S.IsNull()) continue; if (S.ShapeType() == TopAbs_FACE) { BB.Add(she,S); + she.Closed (BRep_Tool::IsClosed (she)); yaface = Standard_True; } } diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx b/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx index eb1eb3ab32..ac37b94d5a 100644 --- a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx +++ b/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx @@ -1283,6 +1283,7 @@ static TopoDS_Solid GetNewSolid(const TopoDS_Shape& S, TopoDS_Face& F) newShellBuilder.MakeShell( newShell ); newShellBuilder.Add( newShell, hsFace ); newShellBuilder.Add( newShell, infFace ); + newShell.Closed (BRep_Tool::IsClosed (newShell)); BRep_Builder newSolidBuilder; newSolidBuilder.MakeSolid( newSolid ); diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx index fd5b1ed385..6eb13c1a2e 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx @@ -140,6 +140,7 @@ Standard_Integer TopOpeBRepBuild_Builder1::CorrectResult2d(TopoDS_Shape& aResult } // Add wires aWire.Orientation(Wori); + aWire.Closed (BRep_Tool::IsClosed (aWire)); BB.Add (aFace, aWire); } @@ -148,8 +149,10 @@ Standard_Integer TopOpeBRepBuild_Builder1::CorrectResult2d(TopoDS_Shape& aResult } aShell.Orientation(S.Orientation()); + aShell.Closed (BRep_Tool::IsClosed(aShell)); BB.Add (aSolid, aShell); } + aSolid.Closed (BRep_Tool::IsClosed(aSolid)); aResult=aSolid; //update section curves diff --git a/src/XCAFPrs/XCAFPrs.cxx b/src/XCAFPrs/XCAFPrs.cxx index ab338629a0..fd7956e587 100644 --- a/src/XCAFPrs/XCAFPrs.cxx +++ b/src/XCAFPrs/XCAFPrs.cxx @@ -250,6 +250,7 @@ Standard_Boolean XCAFPrs::DispatchStyles (const TopoDS_Shape &shape, // iterate on subshapes BRep_Builder B; TopoDS_Shape copy = shape.EmptyCopied(); + copy.Closed (shape.Closed()); Standard_Boolean suboverride = Standard_False; Standard_Integer nbDef = 0; for ( TopoDS_Iterator it(shape); it.More(); it.Next() ) { diff --git a/src/XSControl/XSControl_Utils.cxx b/src/XSControl/XSControl_Utils.cxx index 4e256eb9fe..2a88a43e3c 100644 --- a/src/XSControl/XSControl_Utils.cxx +++ b/src/XSControl/XSControl_Utils.cxx @@ -429,6 +429,7 @@ static const Standard_ExtString voidext = { 0 }; TopoDS_Shell S; B.MakeShell (S); B.Add (S,shape); // ne passe pas ! : TopoDS::Face(shape)); + S.Closed (BRep_Tool::IsClosed (S)); return S; } diff --git a/tests/bugs/moddata_3/bug25202_1 b/tests/bugs/moddata_3/bug25202_1 new file mode 100755 index 0000000000..7acf0ece41 --- /dev/null +++ b/tests/bugs/moddata_3/bug25202_1 @@ -0,0 +1,33 @@ +puts "========" +puts "CR25202" +puts "========" +puts "" +######################################### +## Incorrect value of IsClosed flag in shapes produced by some algorithms +######################################### + +pload QAcommands + +box b 100 100 100 +vertex v1 0 0 50 +explode b v +edge ee1 b_2 v1 +edge ee2 v1 b_1 +explode b e +wire ww1 ee1 ee2 b_2 b_3 b_4 +wire ww2 ee1 ee2 b_9 b_10 b_5 +mkplane ff1 ww1 +mkplane ff2 ww2 +explode b f +#Replaced edge lies between b_1 and b_3 faces. + +OCC25202 result b 1 ff1 3 ff2 + +set info [whatis result] +if { [regexp {Closed} ${info}] } { + puts "OK : value of IsClosed flag is correct" +} else { + puts "Error : value of IsClosed flag is not correct" +} + +set 2dviewer 1 diff --git a/tests/bugs/moddata_3/bug25202_2 b/tests/bugs/moddata_3/bug25202_2 new file mode 100755 index 0000000000..6c519b2beb --- /dev/null +++ b/tests/bugs/moddata_3/bug25202_2 @@ -0,0 +1,21 @@ +puts "========" +puts "CR25202" +puts "========" +puts "" +######################################### +## Incorrect value of IsClosed flag in shapes produced by some algorithms +######################################### + +box b 100 100 100 +explode b sh +trotate b_1 0 0 0 1 0 0 45 +removeloc result b_1 + +set info [whatis result] +if { [regexp {Closed} ${info}] } { + puts "OK : value of IsClosed flag is correct" +} else { + puts "Error : value of IsClosed flag is not correct" +} + +set 2dviewer 1 diff --git a/tests/bugs/moddata_3/bug25202_3 b/tests/bugs/moddata_3/bug25202_3 new file mode 100755 index 0000000000..ba1cc564ab --- /dev/null +++ b/tests/bugs/moddata_3/bug25202_3 @@ -0,0 +1,21 @@ +puts "========" +puts "CR25202" +puts "========" +puts "" +######################################### +## Incorrect value of IsClosed flag in shapes produced by some algorithms +######################################### + +plane pp 0 0 0 0 0 1 +trim pp pp 0 100 0 100 +mkface ff pp +prism result ff 0 0 20 + +set info [whatis result] +if { [regexp {Closed} ${info}] } { + puts "OK : value of IsClosed flag is correct" +} else { + puts "Error : value of IsClosed flag is not correct" +} + +set 2dviewer 1 diff --git a/tests/bugs/moddata_3/bug25202_4 b/tests/bugs/moddata_3/bug25202_4 new file mode 100755 index 0000000000..84ff55105e --- /dev/null +++ b/tests/bugs/moddata_3/bug25202_4 @@ -0,0 +1,22 @@ +puts "========" +puts "CR25202" +puts "========" +puts "" +######################################### +## Incorrect value of IsClosed flag in shapes produced by some algorithms +######################################### + +circle cc 0 100 0 20 +mkedge ee cc +wire ww ee +mkplane ff ww +revol result ff 0 0 0 1 0 0 90 + +set info [whatis result] +if { [regexp {Closed} ${info}] } { + puts "OK : value of IsClosed flag is correct" +} else { + puts "Error : value of IsClosed flag is not correct" +} + +set 2dviewer 1