diff --git a/src/AIS/AIS_ParallelRelation.cxx b/src/AIS/AIS_ParallelRelation.cxx index 985d201e41..6f979065e7 100644 --- a/src/AIS/AIS_ParallelRelation.cxx +++ b/src/AIS/AIS_ParallelRelation.cxx @@ -48,7 +48,6 @@ #include #include #include -#include #include #include diff --git a/src/AIS/AIS_Shape.cxx b/src/AIS/AIS_Shape.cxx index 82b805bc06..de7ca1b082 100644 --- a/src/AIS/AIS_Shape.cxx +++ b/src/AIS/AIS_Shape.cxx @@ -65,8 +65,6 @@ #include #include #include -#include -#include IMPLEMENT_STANDARD_RTTIEXT(AIS_Shape,AIS_InteractiveObject) @@ -112,12 +110,9 @@ void AIS_Shape::Compute(const Handle(PrsMgr_PresentationManager3d)& /*aPresentat aPrs->SetDisplayPriority(TheType+2); } // Shape vide -> Assemblage vide. - if (myshape.ShapeType() == TopAbs_COMPOUND) { - TopoDS_Iterator anExplor (myshape); - - if (!anExplor.More()) { - return; - } + if (myshape.ShapeType() == TopAbs_COMPOUND && myshape.NbChildren() == 0) + { + return; } if (IsInfinite()) @@ -227,8 +222,7 @@ void AIS_Shape::computeHlrPresentation (const Handle(Prs3d_Projector)& theProjec } case TopAbs_COMPOUND: { - TopoDS_Iterator anExplor (theShape); - if (!anExplor.More()) + if (theShape.NbChildren() == 0) { return; } @@ -293,11 +287,10 @@ void AIS_Shape::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer aMode) { if(myshape.IsNull()) return; - if (myshape.ShapeType() == TopAbs_COMPOUND) { - TopoDS_Iterator anExplor (myshape); - - if (!anExplor.More()) // empty Shape -> empty Assembly. - return; + if (myshape.ShapeType() == TopAbs_COMPOUND && myshape.NbChildren() == 0) + { + // empty Shape -> empty Assembly. + return; } TopAbs_ShapeEnum TypOfSel = AIS_Shape::SelectionType(aMode); @@ -982,13 +975,11 @@ void AIS_Shape::LoadRecomputable(const Standard_Integer TheMode) const Bnd_Box& AIS_Shape::BoundingBox() { - if (myshape.ShapeType() == TopAbs_COMPOUND) { - TopoDS_Iterator anExplor (myshape); - - if (!anExplor.More()) { // empty Shape -> empty Assembly. - myBB.SetVoid(); - return myBB; - } + if (myshape.ShapeType() == TopAbs_COMPOUND && myshape.NbChildren() == 0) + { + // empty Shape -> empty Assembly. + myBB.SetVoid (); + return myBB; } if(myCompBB) { diff --git a/src/AIS/AIS_SymmetricRelation.cxx b/src/AIS/AIS_SymmetricRelation.cxx index 74d006875e..a1553c7c10 100644 --- a/src/AIS/AIS_SymmetricRelation.cxx +++ b/src/AIS/AIS_SymmetricRelation.cxx @@ -46,7 +46,6 @@ #include #include #include -#include #include #include diff --git a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx b/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx index 23aa6f5a13..ac2a314ba6 100644 --- a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx +++ b/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx @@ -39,7 +39,6 @@ #include #include #include -#include #include #include #include diff --git a/src/BOPAlgo/BOPAlgo_Builder_3.cxx b/src/BOPAlgo/BOPAlgo_Builder_3.cxx index 1f7d00024a..942b92b2cc 100644 --- a/src/BOPAlgo/BOPAlgo_Builder_3.cxx +++ b/src/BOPAlgo/BOPAlgo_Builder_3.cxx @@ -29,7 +29,6 @@ #include #include #include -#include #include #include // diff --git a/src/BOPAlgo/BOPAlgo_Tools.cxx b/src/BOPAlgo/BOPAlgo_Tools.cxx index ac65629892..9b0835f521 100644 --- a/src/BOPAlgo/BOPAlgo_Tools.cxx +++ b/src/BOPAlgo/BOPAlgo_Tools.cxx @@ -712,8 +712,7 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, BOPTools_AlgoTools::CorrectShapeTolerances(aRFaces, aMEmpty, Standard_False); // theFaces = aRFaces; - TopoDS_Iterator aItF(theFaces); - return aItF.More(); + return theFaces.NbChildren() > 0; } //======================================================================= diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter.cxx b/src/BOPAlgo/BOPAlgo_WireSplitter.cxx index 97d586cebb..c251a9d98f 100644 --- a/src/BOPAlgo/BOPAlgo_WireSplitter.cxx +++ b/src/BOPAlgo/BOPAlgo_WireSplitter.cxx @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include diff --git a/src/BRep/BRep_TEdge.cxx b/src/BRep/BRep_TEdge.cxx index ef5a2ba60d..e8d3be2ed7 100644 --- a/src/BRep/BRep_TEdge.cxx +++ b/src/BRep/BRep_TEdge.cxx @@ -23,7 +23,7 @@ #include #include #include -#include +#include IMPLEMENT_STANDARD_RTTIEXT(BRep_TEdge,TopoDS_TEdge) diff --git a/src/BRep/BRep_TFace.cxx b/src/BRep/BRep_TFace.cxx index b4d35e4585..30c2b3c952 100644 --- a/src/BRep/BRep_TFace.cxx +++ b/src/BRep/BRep_TFace.cxx @@ -21,7 +21,7 @@ #include #include #include -#include +#include IMPLEMENT_STANDARD_RTTIEXT(BRep_TFace,TopoDS_TFace) diff --git a/src/BRep/BRep_TVertex.cxx b/src/BRep/BRep_TVertex.cxx index 067f8197c0..86145ced1a 100644 --- a/src/BRep/BRep_TVertex.cxx +++ b/src/BRep/BRep_TVertex.cxx @@ -19,7 +19,7 @@ #include #include #include -#include +#include IMPLEMENT_STANDARD_RTTIEXT(BRep_TVertex,TopoDS_TVertex) diff --git a/src/BRepCheck/BRepCheck.cxx b/src/BRepCheck/BRepCheck.cxx index f5cb45ec19..1c60f5a056 100644 --- a/src/BRepCheck/BRepCheck.cxx +++ b/src/BRepCheck/BRepCheck.cxx @@ -22,7 +22,6 @@ #include #include #include -#include #include //======================================================================= diff --git a/src/BRepFill/BRepFill_TrimShellCorner.cxx b/src/BRepFill/BRepFill_TrimShellCorner.cxx index e1ad6a8c5b..64f6908cf0 100644 --- a/src/BRepFill/BRepFill_TrimShellCorner.cxx +++ b/src/BRepFill/BRepFill_TrimShellCorner.cxx @@ -2182,15 +2182,12 @@ static Standard_Real ComputeAveragePlaneAndMaxDeviation(const TopoDS_Shape& aWir gp_Pln& thePlane, Standard_Boolean& IsSingular) { - Standard_Integer N = 40, nedges = 0; - - TopoDS_Iterator iter( aWire ); - for (; iter.More(); iter.Next()) - nedges++; + Standard_Integer N = 40; + Standard_Integer nedges = aWire.NbChildren(); TColgp_Array1OfPnt Pnts( 1, nedges*N ); Standard_Integer ind = 1, i; - for (iter.Initialize(aWire); iter.More(); iter.Next()) + for (TopoDS_Iterator iter (aWire); iter.More(); iter.Next()) { const TopoDS_Edge& anEdge = TopoDS::Edge( iter.Value() ); BRepAdaptor_Curve aCurve(anEdge); diff --git a/src/BRepGProp/BRepGProp.cxx b/src/BRepGProp/BRepGProp.cxx index 4cc0f1da40..bb1364e110 100644 --- a/src/BRepGProp/BRepGProp.cxx +++ b/src/BRepGProp/BRepGProp.cxx @@ -110,8 +110,7 @@ static Standard_Real surfaceProperties(const TopoDS_Shape& S, GProp_GProps& Prop } BF.Load(F); - TopoDS_Iterator aWIter(F); - Standard_Boolean IsNatRestr = !aWIter.More(); + Standard_Boolean IsNatRestr = (F.NbChildren() == 0); if(!IsNatRestr) BD.Init(F); if(Eps < 1.0) { G.Perform(BF, BD, Eps); @@ -199,8 +198,7 @@ static Standard_Real volumeProperties(const TopoDS_Shape& S, GProp_GProps& Props if (isFwd || isRvs){ BF.Load(F); - TopoDS_Iterator aWIter(F); - Standard_Boolean IsNatRestr = !aWIter.More(); + Standard_Boolean IsNatRestr = (F.NbChildren () == 0); if(!IsNatRestr) BD.Init(F); if(Eps < 1.0) { G.Perform(BF, BD, Eps); @@ -348,8 +346,7 @@ static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape, if (isFwd || isRvs){ aPropFace.Load(aFace); - TopoDS_Iterator aWIter(aFace); - Standard_Boolean IsNatRestr = !aWIter.More(); + Standard_Boolean IsNatRestr = (aFace.NbChildren () == 0); if(IsNatRestr) aLocalError = aVProps.Perform(aPropFace, aTol, CGFlag, IFlag); else { @@ -496,8 +493,7 @@ static Standard_Real volumePropertiesGK(const TopoDS_Shape &theShape, if (isFwd || isRvs){ aPropFace.Load(aFace); - TopoDS_Iterator aWIter(aFace); - Standard_Boolean IsNatRestr = !aWIter.More(); + Standard_Boolean IsNatRestr = (aFace.NbChildren () == 0); if(IsNatRestr) aLocalError = aVProps.Perform(aPropFace, thePln, aTol, CGFlag, IFlag); else { diff --git a/src/BRepGProp/BRepGProp_Gauss.cxx b/src/BRepGProp/BRepGProp_Gauss.cxx index 80930daa16..e8d70b1713 100644 --- a/src/BRepGProp/BRepGProp_Gauss.cxx +++ b/src/BRepGProp/BRepGProp_Gauss.cxx @@ -585,8 +585,7 @@ Standard_Real BRepGProp_Gauss::Compute( // const Standard_Integer NumSubs = SUBS_POWER; const TopoDS_Face& aF = theSurface.GetFace(); - TopoDS_Iterator aWIter(aF); - const Standard_Boolean isNaturalRestriction = !aWIter.More(); //theSurface.NaturalRestriction(); + const Standard_Boolean isNaturalRestriction = (aF.NbChildren () == 0); //theSurface.NaturalRestriction(); Standard_Real CIx, CIy, CIz, CIxy, CIxz, CIyz; Standard_Real CDim[2], CIxx[2], CIyy[2], CIzz[2]; diff --git a/src/BRepOffset/BRepOffset_MakeOffset.cxx b/src/BRepOffset/BRepOffset_MakeOffset.cxx index 29b3a1b905..e9e565de83 100644 --- a/src/BRepOffset/BRepOffset_MakeOffset.cxx +++ b/src/BRepOffset/BRepOffset_MakeOffset.cxx @@ -2229,36 +2229,30 @@ void BRepOffset_MakeOffset::CorrectConicalFaces() } } } - TopoDS_Iterator anIt(Sol); - Standard_Boolean SolIsNull = !anIt.More(); + Standard_Integer nbs = Sol.NbChildren(); + Standard_Boolean SolIsNull = (nbs == 0); //Checking solid - if(!SolIsNull) + if (nbs > 1) { - Standard_Integer nbs = 0; - while(anIt.More()) {anIt.Next(); ++nbs;} - if(nbs > 1) + BRepCheck_Analyzer aCheck (Sol, Standard_False); + if (!aCheck.IsValid ()) { - BRepCheck_Analyzer aCheck(Sol, Standard_False); - if(!aCheck.IsValid()) + TopTools_ListOfShape aSolList; + CorrectSolid (Sol, aSolList); + if (!aSolList.IsEmpty ()) { - TopTools_ListOfShape aSolList; - CorrectSolid(Sol, aSolList); - if(!aSolList.IsEmpty()) + BB.Add (NC, Sol); + TopTools_ListIteratorOfListOfShape aSLIt (aSolList); + for (; aSLIt.More (); aSLIt.Next ()) { - BB.Add(NC, Sol); - TopTools_ListIteratorOfListOfShape aSLIt(aSolList); - for(; aSLIt.More(); aSLIt.Next()) - { - BB.Add(NC, aSLIt.Value()); - } - SolIsNull = Standard_True; + BB.Add (NC, aSLIt.Value ()); } + SolIsNull = Standard_True; } } } // - anIt.Initialize(NC); - Standard_Boolean NCIsNull = !anIt.More(); + Standard_Boolean NCIsNull = (NC.NbChildren() == 0); if((!SolIsNull) && (!NCIsNull)) { BB.Add(NC, Sol); @@ -3072,35 +3066,29 @@ void BRepOffset_MakeOffset::MakeSolid () } } } - TopoDS_Iterator anIt(Sol); - Standard_Boolean SolIsNull = !anIt.More(); + Standard_Integer nbs = Sol.NbChildren(); + Standard_Boolean SolIsNull = (nbs == 0); //Checking solid - if(!SolIsNull) + if (nbs > 1) { - Standard_Integer nbs = 0; - while(anIt.More()) {anIt.Next(); ++nbs;} - if(nbs > 1) + BRepCheck_Analyzer aCheck (Sol, Standard_False); + if (!aCheck.IsValid ()) { - BRepCheck_Analyzer aCheck(Sol, Standard_False); - if(!aCheck.IsValid()) + TopTools_ListOfShape aSolList; + CorrectSolid (Sol, aSolList); + if (!aSolList.IsEmpty ()) { - TopTools_ListOfShape aSolList; - CorrectSolid(Sol, aSolList); - if(!aSolList.IsEmpty()) + B.Add (NC, Sol); + TopTools_ListIteratorOfListOfShape aSLIt (aSolList); + for (; aSLIt.More (); aSLIt.Next ()) { - B.Add(NC, Sol); - TopTools_ListIteratorOfListOfShape aSLIt(aSolList); - for(; aSLIt.More(); aSLIt.Next()) - { - B.Add(NC, aSLIt.Value()); - } - SolIsNull = Standard_True; + B.Add (NC, aSLIt.Value ()); } + SolIsNull = Standard_True; } } } - anIt.Initialize(NC); - Standard_Boolean NCIsNull = !anIt.More(); + Standard_Boolean NCIsNull = (NC.NbChildren() == 0); if((!SolIsNull) && (!NCIsNull)) { B.Add(NC, Sol); diff --git a/src/BRepOffset/BRepOffset_MakeOffset_1.cxx b/src/BRepOffset/BRepOffset_MakeOffset_1.cxx index 47ff3c4e76..69eeb2802c 100644 --- a/src/BRepOffset/BRepOffset_MakeOffset_1.cxx +++ b/src/BRepOffset/BRepOffset_MakeOffset_1.cxx @@ -2386,9 +2386,7 @@ Standard_Boolean CheckInvertedBlock(const TopoDS_Shape& theCB, { // For possible removal of the block: // 1. There should be more than just one face in the block - TopoDS_Iterator aItF(theCB); - aItF.Next(); - if (!aItF.More()) { + if (theCB.NbChildren() < 2) { return Standard_False; } // diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx b/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx index d03d87a782..31f4979242 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx @@ -398,9 +398,7 @@ void BRepOffsetAPI_ThruSections::Build() if (Georges.IsDegeneratedFirstSection()) IndFirstSec = 2; TopoDS_Shape aWorkingSection = WorkingSections(IndFirstSec); - TopoDS_Iterator itw(aWorkingSection); - for (; itw.More(); itw.Next()) - myNbEdgesInSection++; + myNbEdgesInSection += aWorkingSection.NbChildren(); for (Standard_Integer ii = 1; ii <= myWires.Length(); ii++) { TopExp_Explorer Explo(myWires(ii), TopAbs_EDGE); @@ -419,7 +417,7 @@ void BRepOffsetAPI_ThruSections::Build() { const TopoDS_Edge& aNewEdge = TopoDS::Edge(itl.Value()); Standard_Integer inde = 1; - for (itw.Initialize(aWorkingSection); itw.More(); itw.Next(),inde++) + for (TopoDS_Iterator itw (aWorkingSection); itw.More(); itw.Next(), inde++) { const TopoDS_Shape& aWorkingEdge = itw.Value(); if (aWorkingEdge.IsSame(aNewEdge)) diff --git a/src/BRepProj/BRepProj_Projection.cxx b/src/BRepProj/BRepProj_Projection.cxx index b08f0858e3..a448b9300d 100644 --- a/src/BRepProj/BRepProj_Projection.cxx +++ b/src/BRepProj/BRepProj_Projection.cxx @@ -39,7 +39,6 @@ #include #include #include -#include #include #include #include diff --git a/src/BRepTools/BRepTools.cxx b/src/BRepTools/BRepTools.cxx index 6a1096fa79..617ce098df 100644 --- a/src/BRepTools/BRepTools.cxx +++ b/src/BRepTools/BRepTools.cxx @@ -57,7 +57,6 @@ #include #include #include -#include #include #include #include diff --git a/src/DBRep/DBRep_IsoBuilder.cxx b/src/DBRep/DBRep_IsoBuilder.cxx index 3db716aba0..f02475cfcb 100644 --- a/src/DBRep/DBRep_IsoBuilder.cxx +++ b/src/DBRep/DBRep_IsoBuilder.cxx @@ -375,14 +375,11 @@ void DBRep_IsoBuilder::FillGaps(const TopoDS_Face& theFace, // Check the number of edges in the wire, not to // miss the wires containing one edge only - Standard_Boolean SingleEdge = Standard_True; + if (aW.NbChildren() == 0) { - TopoDS_Iterator itE(aW); - if (!itE.More()) - continue; - itE.Next(); - SingleEdge = !itE.More(); + continue; } + Standard_Boolean SingleEdge = (aW.NbChildren() == 1); TopoDS_Edge aPrevEdge, aCurrEdge; diff --git a/src/DNaming/DNaming.cxx b/src/DNaming/DNaming.cxx index 7bdd11292a..046f378275 100644 --- a/src/DNaming/DNaming.cxx +++ b/src/DNaming/DNaming.cxx @@ -724,11 +724,8 @@ void DNaming::LoadResult(const TDF_Label& ResultLabel, BRepAlgoAPI_BooleanOperat TNaming_Builder Builder (ResultLabel); TopoDS_Shape aResult = MS.Shape(); if (aResult.ShapeType() == TopAbs_COMPOUND) { - Standard_Integer nbSubResults = 0; - TopoDS_Iterator itr(aResult); - for (; itr.More(); itr.Next()) nbSubResults++; - if (nbSubResults == 1) { - itr.Initialize(aResult); + if (aResult.NbChildren() == 1) { + TopoDS_Iterator itr (aResult); if (itr.More()) aResult = itr.Value(); } } diff --git a/src/DNaming/DNaming_BooleanOperationDriver.cxx b/src/DNaming/DNaming_BooleanOperationDriver.cxx index 3a484f43a7..2197fafb4d 100644 --- a/src/DNaming/DNaming_BooleanOperationDriver.cxx +++ b/src/DNaming/DNaming_BooleanOperationDriver.cxx @@ -373,8 +373,7 @@ Standard_Boolean DNaming_BooleanOperationDriver::CheckAndLoad if (theMkOpe.IsDone() && !theMkOpe.Shape().IsNull()) { if (theMkOpe.Shape().ShapeType() == TopAbs_COMPOUND) { - TopoDS_Iterator anItr(theMkOpe.Shape()); - if(!anItr.More()) { + if (theMkOpe.Shape().NbChildren() == 0) { theFunction->SetFailure(NULL_RESULT); return Standard_False; } diff --git a/src/DNaming/DNaming_FilletDriver.cxx b/src/DNaming/DNaming_FilletDriver.cxx index 61ced83ea5..bdaddaef19 100644 --- a/src/DNaming/DNaming_FilletDriver.cxx +++ b/src/DNaming/DNaming_FilletDriver.cxx @@ -179,11 +179,8 @@ void DNaming_FilletDriver::LoadNamingDS (const TDF_Label& theResultLabel, TopoDS_Shape aResult = theMkFillet.Shape(); if (aResult.ShapeType() == TopAbs_COMPOUND) { - Standard_Integer nbSubResults = 0; - TopoDS_Iterator itr(aResult); - for (; itr.More(); itr.Next()) nbSubResults++; - if (nbSubResults == 1) { - itr.Initialize(aResult); + if (aResult.NbChildren() == 1) { + TopoDS_Iterator itr (aResult); if (itr.More()) aResult = itr.Value(); } } diff --git a/src/DrawDim/DrawDim_PlanarDimensionCommands.cxx b/src/DrawDim/DrawDim_PlanarDimensionCommands.cxx index 7e2676804b..a18884c3b1 100644 --- a/src/DrawDim/DrawDim_PlanarDimensionCommands.cxx +++ b/src/DrawDim/DrawDim_PlanarDimensionCommands.cxx @@ -38,13 +38,14 @@ #include #include #include -#include #include #include #include + #ifdef _MSC_VER #include #endif + //======================================================================= //function : DrawDim_DISTANCE //purpose : diff --git a/src/HLRBRep/HLRBRep_ShapeToHLR.cxx b/src/HLRBRep/HLRBRep_ShapeToHLR.cxx index fd33f64773..052579682c 100644 --- a/src/HLRBRep/HLRBRep_ShapeToHLR.cxx +++ b/src/HLRBRep/HLRBRep_ShapeToHLR.cxx @@ -33,7 +33,6 @@ #include #include #include -#include #include #include #include diff --git a/src/IGESToBRep/IGESToBRep.cxx b/src/IGESToBRep/IGESToBRep.cxx index 732d63f6a9..2375baa1f8 100644 --- a/src/IGESToBRep/IGESToBRep.cxx +++ b/src/IGESToBRep/IGESToBRep.cxx @@ -72,7 +72,6 @@ #include #include #include -#include #include #include #include diff --git a/src/IGESToBRep/IGESToBRep_BRepEntity.cxx b/src/IGESToBRep/IGESToBRep_BRepEntity.cxx index 3775292940..5f4b0604f1 100644 --- a/src/IGESToBRep/IGESToBRep_BRepEntity.cxx +++ b/src/IGESToBRep/IGESToBRep_BRepEntity.cxx @@ -71,7 +71,6 @@ #include #include #include -#include #include #include #include diff --git a/src/IVtkOCC/IVtkOCC_SelectableObject.cxx b/src/IVtkOCC/IVtkOCC_SelectableObject.cxx index 8e0d54aa69..6d13ab6edd 100644 --- a/src/IVtkOCC/IVtkOCC_SelectableObject.cxx +++ b/src/IVtkOCC/IVtkOCC_SelectableObject.cxx @@ -94,13 +94,10 @@ void IVtkOCC_SelectableObject::ComputeSelection (const Handle(SelectMgr_Selectio TopoDS_Shape anOcctShape = myShape->GetShape(); - if (anOcctShape.ShapeType() == TopAbs_COMPOUND) + if (anOcctShape.ShapeType() == TopAbs_COMPOUND && anOcctShape.NbChildren() == 0) { - TopoDS_Iterator anExplor (anOcctShape); - if (!anExplor.More()) // Shape empty -> go away - { - return; - } + // Shape empty -> go away + return; } TopAbs_ShapeEnum aTypeOfSel = AIS_Shape::SelectionType (theMode); @@ -160,14 +157,11 @@ const Bnd_Box& IVtkOCC_SelectableObject::BoundingBox() TopoDS_Shape anOcctShape = myShape->GetShape(); - if (anOcctShape.ShapeType() == TopAbs_COMPOUND) + if (anOcctShape.ShapeType() == TopAbs_COMPOUND && anOcctShape.NbChildren() == 0) { - TopoDS_Iterator anExplor (anOcctShape); - if (!anExplor.More()) - { // Shape empty -> nothing to do - myBndBox.SetVoid(); - return myBndBox; - } + // Shape empty -> nothing to do + myBndBox.SetVoid (); + return myBndBox; } if (myBndBox.IsVoid()) diff --git a/src/STEPConstruct/STEPConstruct_Styles.cxx b/src/STEPConstruct/STEPConstruct_Styles.cxx index ad131f96c0..dece07fae5 100644 --- a/src/STEPConstruct/STEPConstruct_Styles.cxx +++ b/src/STEPConstruct/STEPConstruct_Styles.cxx @@ -69,7 +69,6 @@ #include #include #include -#include #include #include #include diff --git a/src/STEPConstruct/STEPConstruct_ValidationProps.cxx b/src/STEPConstruct/STEPConstruct_ValidationProps.cxx index 6df3c0ab4e..d8e9193b5d 100644 --- a/src/STEPConstruct/STEPConstruct_ValidationProps.cxx +++ b/src/STEPConstruct/STEPConstruct_ValidationProps.cxx @@ -57,7 +57,6 @@ #include #include #include -#include #include #include #include diff --git a/src/ShapeAnalysis/ShapeAnalysis_Wire.cxx b/src/ShapeAnalysis/ShapeAnalysis_Wire.cxx index 7026c3a6a5..140f94483e 100644 --- a/src/ShapeAnalysis/ShapeAnalysis_Wire.cxx +++ b/src/ShapeAnalysis/ShapeAnalysis_Wire.cxx @@ -77,7 +77,6 @@ #include #include #include -#include #include #include #include diff --git a/src/ShapeCustom/ShapeCustom.cxx b/src/ShapeCustom/ShapeCustom.cxx index 9740a0400e..808a90b13c 100644 --- a/src/ShapeCustom/ShapeCustom.cxx +++ b/src/ShapeCustom/ShapeCustom.cxx @@ -60,11 +60,7 @@ TopoDS_Shape ShapeCustom::ApplyModifier (const TopoDS_Shape &S, BRep_Builder B; B.MakeCompound ( C ); - Standard_Integer aShapeCount = 0; - { - for (TopoDS_Iterator it(SF); it.More(); it.Next()) ++aShapeCount; - } - + Standard_Integer aShapeCount = SF.NbChildren(); Message_ProgressSentry aPSentry(aProgress, "Applying Modifier For Solids", 0, aShapeCount, 1); for ( TopoDS_Iterator it(SF); it.More() && aPSentry.More(); it.Next(), aPSentry.Next() ) { TopoDS_Shape shape = it.Value(); diff --git a/src/ShapeFix/ShapeFix_FixSmallSolid.cxx b/src/ShapeFix/ShapeFix_FixSmallSolid.cxx index cbb2ae6a66..89eef236f4 100644 --- a/src/ShapeFix/ShapeFix_FixSmallSolid.cxx +++ b/src/ShapeFix/ShapeFix_FixSmallSolid.cxx @@ -368,7 +368,7 @@ static TopoDS_Shape MergeShells ( } // If there are no elements in the new shell, return null shape - if (!TopoDS_Iterator (aNewShell).More()) + if (aNewShell.NbChildren() == 0) return TopoDS_Shape(); return aNewShell; diff --git a/src/ShapeFix/ShapeFix_Shape.cxx b/src/ShapeFix/ShapeFix_Shape.cxx index 9ed6db145c..44a7d16dcc 100644 --- a/src/ShapeFix/ShapeFix_Shape.cxx +++ b/src/ShapeFix/ShapeFix_Shape.cxx @@ -147,9 +147,7 @@ Standard_Boolean ShapeFix_Shape::Perform(const Handle(Message_ProgressIndicator) Standard_Integer savFixSameParameterMode = myFixSameParameterMode; myFixSameParameterMode = Standard_False; myFixVertexTolMode = Standard_False; - Standard_Integer aShapesNb = 0; - for ( TopoDS_Iterator anIter(S); anIter.More(); anIter.Next() ) - ++aShapesNb; + Standard_Integer aShapesNb = S.NbChildren(); // Open progress indication scope for sub-shape fixing Message_ProgressSentry aPSentrySubShape(theProgress, "Fixing sub-shape", 0, aShapesNb, 1); diff --git a/src/ShapeFix/ShapeFix_Shell.cxx b/src/ShapeFix/ShapeFix_Shell.cxx index 1d9782feb6..ec87499beb 100644 --- a/src/ShapeFix/ShapeFix_Shell.cxx +++ b/src/ShapeFix/ShapeFix_Shell.cxx @@ -117,9 +117,7 @@ Standard_Boolean ShapeFix_Shell::Perform(const Handle(Message_ProgressIndicator) TopoDS_Shape S = Context()->Apply(myShell); // Get the number of faces for progress indication - Standard_Integer aNbFaces = 0; - for ( TopExp_Explorer aFaceExp(S, TopAbs_FACE); aFaceExp.More(); aFaceExp.Next() ) - ++aNbFaces; + Standard_Integer aNbFaces = S.NbChildren(); // Start progress scope (no need to check if progress exists -- it is safe) Message_ProgressSentry aPSentry(theProgress, "Fixing face", 0, aNbFaces, 1); diff --git a/src/ShapePersistent/ShapePersistent_TopoDS.cxx b/src/ShapePersistent/ShapePersistent_TopoDS.cxx index 032a9ec420..43e37e4aeb 100644 --- a/src/ShapePersistent/ShapePersistent_TopoDS.cxx +++ b/src/ShapePersistent/ShapePersistent_TopoDS.cxx @@ -213,13 +213,7 @@ ShapePersistent_TopoDS::Translate (const TopoDS_Shape& theShape, S.Orientation(TopAbs_FORWARD); S.Location(TopLoc_Location()); // Count the number of of the Shape's TShape - Standard_Integer nbElem = 0; - TopoDS_Iterator anItCount(S); - while (anItCount.More()) { - ++nbElem; - anItCount.Next(); - } - + Standard_Integer nbElem = S.NbChildren(); if (nbElem > 0) { Handle(StdLPersistent_HArray1OfPersistent) aShapes = diff --git a/src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx b/src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx index b992c80aa7..18f64135a1 100644 --- a/src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx +++ b/src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx @@ -23,7 +23,6 @@ #include #include #include -#include #include #include diff --git a/src/StdPrs/StdPrs_ShadedShape.cxx b/src/StdPrs/StdPrs_ShadedShape.cxx index e098fc47e6..7fda37ccb1 100644 --- a/src/StdPrs/StdPrs_ShadedShape.cxx +++ b/src/StdPrs/StdPrs_ShadedShape.cxx @@ -313,8 +313,7 @@ namespace for (TopExp_Explorer aFaceIter (theShape, TopAbs_FACE); aFaceIter.More(); aFaceIter.Next()) { const TopoDS_Face& aFace = TopoDS::Face (aFaceIter.Current()); - TopoDS_Iterator aSubShapeIter (aFace); - if (!aSubShapeIter.More()) + if (aFace.NbChildren() == 0) { // handle specifically faces without boundary definition (triangulation-only) StdPrs_WFShape::AddEdgesOnTriangulation (aSeqPntsExtra, aFace, Standard_False); @@ -554,15 +553,13 @@ void StdPrs_ShadedShape::Add (const Handle (Prs3d_Presentation)& thePrs, aBuilder.MakeCompound (anOpened); ExploreSolids (theShape, aBuilder, aClosed, anOpened, Standard_True); - TopoDS_Iterator aShapeIter (aClosed); - if (aShapeIter.More()) + if (aClosed.NbChildren() > 0) { shadeFromShape (aClosed, thePrs, theDrawer, theHasTexels, theUVOrigin, theUVRepeat, theUVScale, true); } - aShapeIter.Initialize (anOpened); - if (aShapeIter.More()) + if (anOpened.NbChildren() > 0) { shadeFromShape (anOpened, thePrs, theDrawer, theHasTexels, theUVOrigin, theUVRepeat, theUVScale, false); diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx b/src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx index 4dcfc11a97..be35bdd2d7 100644 --- a/src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx +++ b/src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx @@ -33,7 +33,6 @@ #include #include #include -#include #include //======================================================================= diff --git a/src/TNaming/TNaming_Localizer.cxx b/src/TNaming/TNaming_Localizer.cxx index 4f705bee21..6868c7b43e 100644 --- a/src/TNaming/TNaming_Localizer.cxx +++ b/src/TNaming/TNaming_Localizer.cxx @@ -34,7 +34,6 @@ #include #include #include -#include #include #include #include diff --git a/src/TNaming/TNaming_Name.cxx b/src/TNaming/TNaming_Name.cxx index 33b2ca055f..1ad3ba3f70 100644 --- a/src/TNaming/TNaming_Name.cxx +++ b/src/TNaming/TNaming_Name.cxx @@ -793,31 +793,28 @@ static Standard_Boolean Intersection (const TDF_Label& L, #ifdef OCCT_DEBUG_INT cout <<"Kept: indxE = " << indxE <<" maxENum = " << nbE << " indxW = " <ChangeShapes(); + TopoDS_ListOfShape& L = aShape.TShape()->myShapes; L.Append(aComponent); TopoDS_Shape& S = L.Last(); // @@ -137,7 +137,7 @@ void TopoDS_Builder::Remove (TopoDS_Shape& aShape, S.Reverse(); S.Location(S.Location().Predivided(aShape.Location())); - TopoDS_ListOfShape& L = aShape.TShape()->ChangeShapes(); + TopoDS_ListOfShape& L = aShape.TShape()->myShapes; TopoDS_ListIteratorOfListOfShape It(L); while (It.More()) { if (It.Value() == S) { diff --git a/src/TopoDS/TopoDS_Iterator.cxx b/src/TopoDS/TopoDS_Iterator.cxx index 0929fd97b2..ce993b318a 100644 --- a/src/TopoDS/TopoDS_Iterator.cxx +++ b/src/TopoDS/TopoDS_Iterator.cxx @@ -38,7 +38,7 @@ void TopoDS_Iterator::Initialize(const TopoDS_Shape& S, myOrientation = S.Orientation(); else myOrientation = TopAbs_FORWARD; - myShapes.Initialize(S.TShape()->Shapes()); + myShapes.Initialize(S.TShape()->myShapes); if (More()) { myShape = myShapes.Value(); myShape.Orientation(TopAbs::Compose(myOrientation,myShape.Orientation())); diff --git a/src/TopoDS/TopoDS_Shape.cxx b/src/TopoDS/TopoDS_Shape.cxx index 27c7caa327..893956f9c9 100644 --- a/src/TopoDS/TopoDS_Shape.cxx +++ b/src/TopoDS/TopoDS_Shape.cxx @@ -14,12 +14,12 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include #include #include -#include #include //======================================================================= diff --git a/src/TopoDS/TopoDS_Shape.hxx b/src/TopoDS/TopoDS_Shape.hxx index 8c6bc70eed..39134655c8 100644 --- a/src/TopoDS/TopoDS_Shape.hxx +++ b/src/TopoDS/TopoDS_Shape.hxx @@ -17,16 +17,12 @@ #ifndef _TopoDS_Shape_HeaderFile #define _TopoDS_Shape_HeaderFile -#include #include #include - -#include +#include #include -#include -#include -#include -class TopoDS_TShape; +#include +#include // resolve name collisions with X11 headers #ifdef Convex @@ -49,204 +45,226 @@ public: DEFINE_STANDARD_ALLOC - //! Creates a NULL Shape referring to nothing. - TopoDS_Shape(); - + TopoDS_Shape() : myOrient (TopAbs_EXTERNAL) {} + //! Returns true if this shape is null. In other words, it //! references no underlying shape with the potential to //! be given a location and an orientation. - Standard_Boolean IsNull() const; - + Standard_Boolean IsNull() const { return myTShape.IsNull(); } + //! Destroys the reference to the underlying shape //! stored in this shape. As a result, this shape becomes null. - void Nullify(); - + void Nullify() { myTShape.Nullify(); } + //! Returns the shape local coordinate system. - const TopLoc_Location& Location() const; - + const TopLoc_Location& Location() const { return myLocation; } + //! Sets the shape local coordinate system. - void Location (const TopLoc_Location& Loc); - + void Location (const TopLoc_Location& theLoc) { myLocation = theLoc; } + //! Returns a shape similar to with the local //! coordinate system set to . - TopoDS_Shape Located (const TopLoc_Location& Loc) const; - + TopoDS_Shape Located (const TopLoc_Location& theLoc) const + { + TopoDS_Shape aShape (*this); + aShape.Location (theLoc); + return aShape; + } + //! Returns the shape orientation. - TopAbs_Orientation Orientation() const; - + TopAbs_Orientation Orientation() const { return myOrient; } + //! Sets the shape orientation. - void Orientation (const TopAbs_Orientation Orient); - + void Orientation (TopAbs_Orientation theOrient) { myOrient = theOrient; } + //! Returns a shape similar to with the //! orientation set to . - TopoDS_Shape Oriented (const TopAbs_Orientation Or) const; - - const Handle(TopoDS_TShape)& TShape() const; - + TopoDS_Shape Oriented (TopAbs_Orientation theOrient) const + { + TopoDS_Shape aShape (*this); + aShape.Orientation (theOrient); + return aShape; + } + + //! Returns a handle to the actual shape implementation. + const Handle(TopoDS_TShape)& TShape() const { return myTShape; } + //! Returns the value of the TopAbs_ShapeEnum //! enumeration that corresponds to this shape, for //! example VERTEX, EDGE, and so on. //! Exceptions //! Standard_NullObject if this shape is null. - TopAbs_ShapeEnum ShapeType() const; - + TopAbs_ShapeEnum ShapeType() const { return myTShape->ShapeType(); } + //! Returns the free flag. - Standard_Boolean Free() const; - + Standard_Boolean Free() const { return myTShape->Free(); } + //! Sets the free flag. - void Free (const Standard_Boolean F); - + void Free (Standard_Boolean theIsFree) { myTShape->Free (theIsFree); } + //! Returns the locked flag. - Standard_Boolean Locked() const; - + Standard_Boolean Locked() const { return myTShape->Locked(); } + //! Sets the locked flag. - void Locked (const Standard_Boolean F); - + void Locked (Standard_Boolean theIsLocked) { myTShape->Locked (theIsLocked); } + //! Returns the modification flag. - Standard_Boolean Modified() const; - + Standard_Boolean Modified() const { return myTShape->Modified(); } + //! Sets the modification flag. - void Modified (const Standard_Boolean M); - + void Modified (Standard_Boolean theIsModified) { myTShape->Modified (theIsModified); } + //! Returns the checked flag. - Standard_Boolean Checked() const; - + Standard_Boolean Checked() const { return myTShape->Checked(); } + //! Sets the checked flag. - void Checked (const Standard_Boolean C); - + void Checked (Standard_Boolean theIsChecked) { myTShape->Checked (theIsChecked); } + //! Returns the orientability flag. - Standard_Boolean Orientable() const; - + Standard_Boolean Orientable() const { return myTShape->Orientable(); } + //! Sets the orientability flag. - void Orientable (const Standard_Boolean C); - + void Orientable (const Standard_Boolean theIsOrientable) { myTShape->Orientable (theIsOrientable); } + //! Returns the closedness flag. - Standard_Boolean Closed() const; - + Standard_Boolean Closed() const { return myTShape->Closed(); } + //! Sets the closedness flag. - void Closed (const Standard_Boolean C); - + void Closed (Standard_Boolean theIsClosed) { myTShape->Closed (theIsClosed); } + //! Returns the infinity flag. - Standard_Boolean Infinite() const; - + Standard_Boolean Infinite() const { return myTShape->Infinite(); } + //! Sets the infinity flag. - void Infinite (const Standard_Boolean C); - + void Infinite (Standard_Boolean theIsInfinite) { myTShape->Infinite (theIsInfinite); } + //! Returns the convexness flag. - Standard_Boolean Convex() const; - + Standard_Boolean Convex() const { return myTShape->Convex(); } + //! Sets the convexness flag. - void Convex (const Standard_Boolean C); - - //! Multiplies the Shape location by . - void Move (const TopLoc_Location& position); - - //! Returns a shape similar to with a location - //! multiplied by . - TopoDS_Shape Moved (const TopLoc_Location& position) const; - + void Convex (Standard_Boolean theIsConvex) { myTShape->Convex (theIsConvex); } + + //! Multiplies the Shape location by thePosition. + void Move (const TopLoc_Location& thePosition) { myLocation = thePosition * myLocation; } + + //! Returns a shape similar to with a location multiplied by thePosition. + TopoDS_Shape Moved (const TopLoc_Location& thePosition) const + { + TopoDS_Shape aShape (*this); + aShape.Move (thePosition); + return aShape; + } + //! Reverses the orientation, using the Reverse method //! from the TopAbs package. - void Reverse(); - + void Reverse() { myOrient = TopAbs::Reverse (myOrient); } + //! Returns a shape similar to with the //! orientation reversed, using the Reverse method //! from the TopAbs package. - TopoDS_Shape Reversed() const; - + TopoDS_Shape Reversed() const + { + TopoDS_Shape aShape (*this); + aShape.Reverse(); + return aShape; + } + //! Complements the orientation, using the Complement //! method from the TopAbs package. - void Complement(); - + void Complement() { myOrient = TopAbs::Complement (myOrient); } + //! Returns a shape similar to with the //! orientation complemented, using the Complement //! method from the TopAbs package. - TopoDS_Shape Complemented() const; - - //! Updates the Shape Orientation by composition with - //! , using the Compose method from the TopAbs - //! package. - void Compose (const TopAbs_Orientation Orient); - + TopoDS_Shape Complemented() const + { + TopoDS_Shape aShape (*this); + aShape.Complement(); + return aShape; + } + + //! Updates the Shape Orientation by composition with theOrient, + //! using the Compose method from the TopAbs package. + void Compose (TopAbs_Orientation theOrient) { myOrient = TopAbs::Compose (myOrient, theOrient); } + //! Returns a shape similar to with the - //! orientation composed with , using the + //! orientation composed with theOrient, using the //! Compose method from the TopAbs package. - TopoDS_Shape Composed (const TopAbs_Orientation Orient) const; - + TopoDS_Shape Composed (TopAbs_Orientation theOrient) const + { + TopoDS_Shape aShape (*this); + aShape.Compose (theOrient); + return aShape; + } + + //! Returns the number of direct sub-shapes (children). + //! @sa TopoDS_Iterator for accessing sub-shapes + Standard_Integer NbChildren() const { return myTShape.IsNull() ? 0 : myTShape->NbChildren(); } + //! Returns True if two shapes are partners, i.e. if //! they share the same TShape. Locations and //! Orientations may differ. - Standard_Boolean IsPartner (const TopoDS_Shape& other) const; - + Standard_Boolean IsPartner (const TopoDS_Shape& theOther) const { return (myTShape == theOther.myTShape); } + //! Returns True if two shapes are same, i.e. if they //! share the same TShape with the same Locations. //! Orientations may differ. - Standard_Boolean IsSame (const TopoDS_Shape& other) const; - + Standard_Boolean IsSame (const TopoDS_Shape& theOther) const + { + return myTShape == theOther.myTShape + && myLocation == theOther.myLocation; + } + //! Returns True if two shapes are equal, i.e. if they //! share the same TShape with the same Locations and //! Orientations. - Standard_Boolean IsEqual (const TopoDS_Shape& other) const; - Standard_Boolean operator == (const TopoDS_Shape& other) const -{ - return IsEqual(other); -} + Standard_Boolean IsEqual (const TopoDS_Shape& theOther) const + { + return myTShape == theOther.myTShape + && myLocation == theOther.myLocation + && myOrient == theOther.myOrient; + } + + Standard_Boolean operator == (const TopoDS_Shape& theOther) const { return IsEqual (theOther); } //! Negation of the IsEqual method. - Standard_Boolean IsNotEqual (const TopoDS_Shape& other) const; - Standard_Boolean operator != (const TopoDS_Shape& other) const -{ - return IsNotEqual(other); -} - + Standard_Boolean IsNotEqual (const TopoDS_Shape& theOther) const { return !IsEqual (theOther); } + Standard_Boolean operator != (const TopoDS_Shape& theOther) const { return IsNotEqual (theOther); } + //! Returns a hashed value denoting . This value //! is in the range 1... It is computed from //! the TShape and the Location. The Orientation is //! not used. Standard_EXPORT Standard_Integer HashCode (const Standard_Integer Upper) const; - + //! Replace by a new Shape with the same //! Orientation and Location and a new TShape with the //! same geometry and no sub-shapes. - void EmptyCopy(); - + void EmptyCopy() { myTShape = myTShape->EmptyCopy(); } + //! Returns a new Shape with the same Orientation and //! Location and a new TShape with the same geometry //! and no sub-shapes. - TopoDS_Shape EmptyCopied() const; - - void TShape (const Handle(TopoDS_TShape)& T); - - - - -protected: - - - + TopoDS_Shape EmptyCopied() const + { + TopoDS_Shape aShape (*this); + aShape.EmptyCopy(); + return aShape; + } + void TShape (const Handle(TopoDS_TShape)& theTShape) { myTShape = theTShape; } private: - - Handle(TopoDS_TShape) myTShape; TopLoc_Location myLocation; TopAbs_Orientation myOrient; - }; - -#include - - - inline Standard_Integer HashCode(const TopoDS_Shape& me,const Standard_Integer Upper) { return me.HashCode(Upper); } - - #endif // _TopoDS_Shape_HeaderFile diff --git a/src/TopoDS/TopoDS_Shape.lxx b/src/TopoDS/TopoDS_Shape.lxx deleted file mode 100644 index 3f254f4f7a..0000000000 --- a/src/TopoDS/TopoDS_Shape.lxx +++ /dev/null @@ -1,459 +0,0 @@ -// Created on: 1991-03-20 -// Created by: Remi Lequette -// Copyright (c) 1991-1999 Matra Datavision -// Copyright (c) 1999-2014 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#include -#include - - -//======================================================================= -//function : TopoDS_Shape -//purpose : Constructor Null Shape -//======================================================================= - -inline TopoDS_Shape::TopoDS_Shape () - : myOrient(TopAbs_EXTERNAL) -{ -} - -//======================================================================= -//function : IsNull -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::IsNull () const -{ - return myTShape.IsNull(); -} - -//======================================================================= -//function : Nullify -//purpose : clear the TShape -//======================================================================= - -inline void TopoDS_Shape::Nullify () -{ - myTShape.Nullify(); -} - -//======================================================================= -//function : Location -//purpose : -//======================================================================= - -inline const TopLoc_Location& TopoDS_Shape::Location () const -{ - return myLocation; -} - -//======================================================================= -//function : Location -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Location (const TopLoc_Location& Loc) -{ - myLocation = Loc; -} - -//======================================================================= -//function : Located -//purpose : -//======================================================================= - -inline TopoDS_Shape TopoDS_Shape::Located (const TopLoc_Location& Loc) const -{ - TopoDS_Shape S(*this); - S.Location(Loc); - return S; -} - -//======================================================================= -//function : Orientation -//purpose : -//======================================================================= - -inline TopAbs_Orientation TopoDS_Shape::Orientation () const -{ - return myOrient; -} - -//======================================================================= -//function : Orientation -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Orientation (const TopAbs_Orientation Orient) -{ - myOrient = Orient; -} - -//======================================================================= -//function : Oriented -//purpose : -//======================================================================= - -inline TopoDS_Shape TopoDS_Shape::Oriented (const TopAbs_Orientation Or) const -{ - TopoDS_Shape S(*this); - S.Orientation(Or); - return S; -} - -//======================================================================= -//function : TShape -//purpose : -//======================================================================= - -inline const Handle(TopoDS_TShape)& TopoDS_Shape::TShape () const -{ - return myTShape; -} - -//======================================================================= -//function : ShapeType -//purpose : -//======================================================================= - -inline TopAbs_ShapeEnum TopoDS_Shape::ShapeType() const -{ - return myTShape->ShapeType(); -} - -//======================================================================= -//function : Free -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Free () const -{ - return myTShape->Free(); -} - -//======================================================================= -//function : Free -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Free (const Standard_Boolean B) -{ - myTShape->Free(B); -} - -//======================================================================= -//function : Locked -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Locked () const -{ - return myTShape->Locked(); -} - -//======================================================================= -//function : Locked -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Locked (const Standard_Boolean B) -{ - myTShape->Locked(B); -} - -//======================================================================= -//function : Modified -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Modified () const -{ - return myTShape->Modified(); -} - -//======================================================================= -//function : Modified -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Modified (const Standard_Boolean B) -{ - myTShape->Modified(B); -} - -//======================================================================= -//function : Checked -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Checked () const -{ - return myTShape->Checked(); -} - -//======================================================================= -//function : Checked -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Checked (const Standard_Boolean B) -{ - myTShape->Checked(B); -} - -//======================================================================= -//function : Orientable -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Orientable () const -{ - return myTShape->Orientable(); -} - -//======================================================================= -//function : Orientable -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Orientable (const Standard_Boolean B) -{ - myTShape->Orientable(B); -} - -//======================================================================= -//function : Closed -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Closed () const -{ - return myTShape->Closed(); -} - -//======================================================================= -//function : Closed -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Closed (const Standard_Boolean B) -{ - myTShape->Closed(B); -} - -//======================================================================= -//function : Infinite -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Infinite () const -{ - return myTShape->Infinite(); -} - -//======================================================================= -//function : Infinite -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Infinite (const Standard_Boolean B) -{ - myTShape->Infinite(B); -} - -//======================================================================= -//function : Convex -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::Convex () const -{ - return myTShape->Convex(); -} - -//======================================================================= -//function : Convex -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Convex (const Standard_Boolean B) -{ - myTShape->Convex(B); -} - -//======================================================================= -//function : Move -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Move (const TopLoc_Location& position) -{ - myLocation = position * myLocation; -} - -//======================================================================= -//function : Moved -//purpose : -//======================================================================= - -inline TopoDS_Shape TopoDS_Shape::Moved - (const TopLoc_Location& position) const -{ - TopoDS_Shape S(*this); - S.Move(position); - return S; -} - -//======================================================================= -//function : Reverse -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Reverse() -{ - myOrient = TopAbs::Reverse(myOrient); -} - -//======================================================================= -//function : Reversed -//purpose : -//======================================================================= - -inline TopoDS_Shape TopoDS_Shape::Reversed() const -{ - TopoDS_Shape S(*this); - S.Reverse(); - return S; -} - -//======================================================================= -//function : Complement -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Complement() -{ - myOrient = TopAbs::Complement(myOrient); -} - -//======================================================================= -//function : Complemented -//purpose : -//======================================================================= - -inline TopoDS_Shape TopoDS_Shape::Complemented() const -{ - TopoDS_Shape S(*this); - S.Complement(); - return S; -} - -//======================================================================= -//function : Compose -//purpose : -//======================================================================= - -inline void TopoDS_Shape::Compose(const TopAbs_Orientation Orient) -{ - myOrient = TopAbs::Compose(myOrient,Orient); -} - -//======================================================================= -//function : Composed -//purpose : -//======================================================================= - -inline TopoDS_Shape TopoDS_Shape::Composed - (const TopAbs_Orientation Orient) const -{ - TopoDS_Shape S(*this); - S.Compose(Orient); - return S; -} - -//======================================================================= -//function : IsPartner -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::IsPartner (const TopoDS_Shape& other) const -{ - return (myTShape == other.myTShape); -} - -//======================================================================= -//function : IsSame -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::IsSame (const TopoDS_Shape& other) const -{ - return (myTShape == other.myTShape) && - (myLocation == other.myLocation); -} - -//======================================================================= -//function : IsEqual -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::IsEqual (const TopoDS_Shape& other) const -{ - return (myTShape == other.myTShape) && - (myLocation == other.myLocation) && - (myOrient == other.myOrient); -} - -//======================================================================= -//function : IsNotEqual -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_Shape::IsNotEqual (const TopoDS_Shape& other) const -{ - return !IsEqual(other); -} - -//======================================================================= -//function : EmptyCopy -//purpose : -//======================================================================= - -inline void TopoDS_Shape::EmptyCopy() -{ - myTShape = myTShape->EmptyCopy(); -} - -//======================================================================= -//function : EmptyCopied -//purpose : -//======================================================================= - -inline TopoDS_Shape TopoDS_Shape::EmptyCopied() const -{ - TopoDS_Shape S(*this); - S.EmptyCopy(); - return S; -} - -//======================================================================= -//function : TShape -//purpose : -//======================================================================= - -inline void TopoDS_Shape::TShape (const Handle(TopoDS_TShape)& TS) -{ - myTShape = TS; -} - diff --git a/src/TopoDS/TopoDS_TCompSolid.cxx b/src/TopoDS/TopoDS_TCompSolid.cxx index e5a1d766ba..6f3e3f0196 100644 --- a/src/TopoDS/TopoDS_TCompSolid.cxx +++ b/src/TopoDS/TopoDS_TCompSolid.cxx @@ -18,7 +18,7 @@ #include #include #include -#include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TCompSolid,TopoDS_TShape) diff --git a/src/TopoDS/TopoDS_TCompound.cxx b/src/TopoDS/TopoDS_TCompound.cxx index 974ba8bbf2..248d3b660c 100644 --- a/src/TopoDS/TopoDS_TCompound.cxx +++ b/src/TopoDS/TopoDS_TCompound.cxx @@ -18,7 +18,7 @@ #include #include #include -#include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TCompound,TopoDS_TShape) diff --git a/src/TopoDS/TopoDS_TEdge.cxx b/src/TopoDS/TopoDS_TEdge.cxx index 789a46bf89..f98754ee0a 100644 --- a/src/TopoDS/TopoDS_TEdge.cxx +++ b/src/TopoDS/TopoDS_TEdge.cxx @@ -18,6 +18,7 @@ #include #include #include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TEdge,TopoDS_TShape) diff --git a/src/TopoDS/TopoDS_TFace.cxx b/src/TopoDS/TopoDS_TFace.cxx index 4052604f53..592af6764c 100644 --- a/src/TopoDS/TopoDS_TFace.cxx +++ b/src/TopoDS/TopoDS_TFace.cxx @@ -18,7 +18,7 @@ #include #include #include -#include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TFace,TopoDS_TShape) diff --git a/src/TopoDS/TopoDS_TShape.cxx b/src/TopoDS/TopoDS_TShape.cxx index f235b20e76..01ecb142e3 100644 --- a/src/TopoDS/TopoDS_TShape.cxx +++ b/src/TopoDS/TopoDS_TShape.cxx @@ -14,11 +14,7 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. - -#include -#include -#include -#include #include +#include -IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TShape,Standard_Transient) \ No newline at end of file +IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TShape,Standard_Transient) diff --git a/src/TopoDS/TopoDS_TShape.hxx b/src/TopoDS/TopoDS_TShape.hxx index 80c4b59873..27932d635b 100644 --- a/src/TopoDS/TopoDS_TShape.hxx +++ b/src/TopoDS/TopoDS_TShape.hxx @@ -17,14 +17,10 @@ #ifndef _TopoDS_TShape_HeaderFile #define _TopoDS_TShape_HeaderFile -#include #include - -#include -#include -#include -#include +#include #include +#include class TopoDS_Iterator; class TopoDS_Builder; @@ -34,9 +30,6 @@ class TopoDS_Builder; #undef Convex #endif -class TopoDS_TShape; -DEFINE_STANDARD_HANDLE(TopoDS_TShape, Standard_Transient) - //! A TShape is a topological structure describing a //! set of points in a 2D or 3D space. //! @@ -67,55 +60,61 @@ class TopoDS_TShape : public Standard_Transient public: - //! Returns the free flag. - Standard_Boolean Free() const; - + Standard_Boolean Free() const { return ((myFlags & TopoDS_TShape_Flags_Free) != 0); } + //! Sets the free flag. - void Free (const Standard_Boolean F); - + void Free (Standard_Boolean theIsFree) { setFlag (TopoDS_TShape_Flags_Free, theIsFree); } + //! Returns the locked flag. - Standard_Boolean Locked() const; - + Standard_Boolean Locked() const { return ((myFlags & TopoDS_TShape_Flags_Locked) != 0); } + //! Sets the locked flag. - void Locked (const Standard_Boolean F); - + void Locked (Standard_Boolean theIsLocked) { setFlag (TopoDS_TShape_Flags_Locked, theIsLocked); } + //! Returns the modification flag. - Standard_Boolean Modified() const; - + Standard_Boolean Modified() const { return ((myFlags & TopoDS_TShape_Flags_Modified) != 0); } + //! Sets the modification flag. - void Modified (const Standard_Boolean M); - + void Modified (Standard_Boolean theIsModified) + { + setFlag (TopoDS_TShape_Flags_Modified, theIsModified); + if (theIsModified) + { + setFlag (TopoDS_TShape_Flags_Checked, false); // when a TShape is modified it is also unchecked + } + } + //! Returns the checked flag. - Standard_Boolean Checked() const; - + Standard_Boolean Checked() const { return ((myFlags & TopoDS_TShape_Flags_Checked) != 0); } + //! Sets the checked flag. - void Checked (const Standard_Boolean C); - + void Checked (Standard_Boolean theIsChecked) { setFlag (TopoDS_TShape_Flags_Checked, theIsChecked); } + //! Returns the orientability flag. - Standard_Boolean Orientable() const; - + Standard_Boolean Orientable() const { return ((myFlags & TopoDS_TShape_Flags_Orientable) != 0); } + //! Sets the orientability flag. - void Orientable (const Standard_Boolean C); - + void Orientable (Standard_Boolean theIsOrientable) { setFlag (TopoDS_TShape_Flags_Orientable, theIsOrientable); } + //! Returns the closedness flag. - Standard_Boolean Closed() const; - + Standard_Boolean Closed() const { return ((myFlags & TopoDS_TShape_Flags_Closed) != 0); } + //! Sets the closedness flag. - void Closed (const Standard_Boolean C); - + void Closed (Standard_Boolean theIsClosed) { setFlag (TopoDS_TShape_Flags_Closed, theIsClosed); } + //! Returns the infinity flag. - Standard_Boolean Infinite() const; - + Standard_Boolean Infinite() const { return ((myFlags & TopoDS_TShape_Flags_Infinite) != 0); } + //! Sets the infinity flag. - void Infinite (const Standard_Boolean C); - + void Infinite (Standard_Boolean theIsInfinite) { setFlag (TopoDS_TShape_Flags_Infinite, theIsInfinite); } + //! Returns the convexness flag. - Standard_Boolean Convex() const; - + Standard_Boolean Convex() const { return ((myFlags & TopoDS_TShape_Flags_Convex) != 0); } + //! Sets the convexness flag. - void Convex (const Standard_Boolean C); - + void Convex (Standard_Boolean theIsConvex) { setFlag (TopoDS_TShape_Flags_Convex, theIsConvex); } + //! Returns the type as a term of the ShapeEnum enum : //! VERTEX, EDGE, WIRE, FACE, .... Standard_EXPORT virtual TopAbs_ShapeEnum ShapeType() const = 0; @@ -123,6 +122,9 @@ public: //! Returns a copy of the TShape with no sub-shapes. Standard_EXPORT virtual Handle(TopoDS_TShape) EmptyCopy() const = 0; + //! Returns the number of direct sub-shapes (children). + //! @sa TopoDS_Iterator for accessing sub-shapes + Standard_Integer NbChildren() const { return myShapes.Size(); } friend class TopoDS_Iterator; friend class TopoDS_Builder; @@ -132,7 +134,6 @@ friend class TopoDS_Builder; protected: - //! Constructs an empty TShape. //! Free : True //! Modified : True @@ -141,28 +142,40 @@ protected: //! Closed : False //! Infinite : False //! Convex : False - TopoDS_TShape(); - - + TopoDS_TShape() + : myFlags (TopoDS_TShape_Flags_Free + | TopoDS_TShape_Flags_Modified + | TopoDS_TShape_Flags_Orientable) {} private: - - const TopoDS_ListOfShape& Shapes() const; - - TopoDS_ListOfShape& ChangeShapes(); + // Defined mask values + enum TopoDS_TShape_Flags + { + TopoDS_TShape_Flags_Free = 0x001, + TopoDS_TShape_Flags_Modified = 0x002, + TopoDS_TShape_Flags_Checked = 0x004, + TopoDS_TShape_Flags_Orientable = 0x008, + TopoDS_TShape_Flags_Closed = 0x010, + TopoDS_TShape_Flags_Infinite = 0x020, + TopoDS_TShape_Flags_Convex = 0x040, + TopoDS_TShape_Flags_Locked = 0x080 + }; + + //! Set bit flag. + void setFlag (TopoDS_TShape_Flags theFlag, + Standard_Boolean theIsOn) + { + if (theIsOn) myFlags |= (Standard_Integer )theFlag; + else myFlags &= ~(Standard_Integer )theFlag; + } + +private: TopoDS_ListOfShape myShapes; - Standard_Integer myFlags; - - + Standard_Integer myFlags; }; - -#include - - - - +DEFINE_STANDARD_HANDLE(TopoDS_TShape, Standard_Transient) #endif // _TopoDS_TShape_HeaderFile diff --git a/src/TopoDS/TopoDS_TShape.lxx b/src/TopoDS/TopoDS_TShape.lxx deleted file mode 100644 index 9bf1eebc51..0000000000 --- a/src/TopoDS/TopoDS_TShape.lxx +++ /dev/null @@ -1,234 +0,0 @@ -// Created on: 1991-03-27 -// Created by: Remi LEQUETTE -// Copyright (c) 1991-1999 Matra Datavision -// Copyright (c) 1999-2014 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#include -#include -#include - -// Defined mask values -#define TopoDS_TShape_Flags_Free (1<<0) -#define TopoDS_TShape_Flags_Modified (1<<1) -#define TopoDS_TShape_Flags_Checked (1<<2) -#define TopoDS_TShape_Flags_Orientable (1<<3) -#define TopoDS_TShape_Flags_Closed (1<<4) -#define TopoDS_TShape_Flags_Infinite (1<<5) -#define TopoDS_TShape_Flags_Convex (1<<6) -#define TopoDS_TShape_Flags_Locked (1<<7) - - -//======================================================================= -//function : TopoDS_TShape -//purpose : Constructor, Empty TShape -//======================================================================= - -inline TopoDS_TShape::TopoDS_TShape() - : myFlags(TopoDS_TShape_Flags_Free | - TopoDS_TShape_Flags_Modified | - TopoDS_TShape_Flags_Orientable) -{ -} - -//======================================================================= -//function : Free -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_TShape::Free() const -{ - return ((myFlags & TopoDS_TShape_Flags_Free) != 0); -} - -//======================================================================= -//function : Free -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Free(const Standard_Boolean F) -{ - if (F) myFlags |= TopoDS_TShape_Flags_Free; - else myFlags &= ~TopoDS_TShape_Flags_Free; -} - -//======================================================================= -//function : Locked -//purpose : -//======================================================================= -inline Standard_Boolean TopoDS_TShape::Locked() const -{ - return ((myFlags & TopoDS_TShape_Flags_Locked) != 0); -} - -//======================================================================= -//function : Locked -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Locked(const Standard_Boolean F) -{ - if (F) myFlags |= TopoDS_TShape_Flags_Locked; - else myFlags &= ~TopoDS_TShape_Flags_Locked; -} - -//======================================================================= -//function : Modified -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_TShape::Modified() const -{ - return ((myFlags & TopoDS_TShape_Flags_Modified) != 0); -} - -//======================================================================= -//function : Modified -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Modified(const Standard_Boolean M) -{ - if (M) - { - myFlags |= TopoDS_TShape_Flags_Modified; - // When a TShape is modified it is also unchecked - myFlags &= ~TopoDS_TShape_Flags_Checked; - } - else myFlags &= ~TopoDS_TShape_Flags_Modified; -} - -//======================================================================= -//function : Checked -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_TShape::Checked() const -{ - return ((myFlags & TopoDS_TShape_Flags_Checked) != 0); -} - -//======================================================================= -//function : Checked -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Checked(const Standard_Boolean M) -{ - if (M) myFlags |= TopoDS_TShape_Flags_Checked; - else myFlags &= ~TopoDS_TShape_Flags_Checked; -} - -//======================================================================= -//function : Orientable -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_TShape::Orientable() const -{ - return ((myFlags & TopoDS_TShape_Flags_Orientable) != 0); -} - -//======================================================================= -//function : Orientable -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Orientable(const Standard_Boolean M) -{ - if (M) myFlags |= TopoDS_TShape_Flags_Orientable; - else myFlags &= ~TopoDS_TShape_Flags_Orientable; -} - -//======================================================================= -//function : Closed -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_TShape::Closed() const -{ - return ((myFlags & TopoDS_TShape_Flags_Closed) != 0); -} - -//======================================================================= -//function : Closed -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Closed(const Standard_Boolean M) -{ - if (M) myFlags |= TopoDS_TShape_Flags_Closed; - else myFlags &= ~TopoDS_TShape_Flags_Closed; -} - -//======================================================================= -//function : Infinite -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_TShape::Infinite() const -{ - return ((myFlags & TopoDS_TShape_Flags_Infinite) != 0); -} - -//======================================================================= -//function : Infinite -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Infinite(const Standard_Boolean M) -{ - if (M) myFlags |= TopoDS_TShape_Flags_Infinite; - else myFlags &= ~TopoDS_TShape_Flags_Infinite; -} - -//======================================================================= -//function : Convex -//purpose : -//======================================================================= - -inline Standard_Boolean TopoDS_TShape::Convex() const -{ - return ((myFlags & TopoDS_TShape_Flags_Convex) != 0); -} - -//======================================================================= -//function : Convex -//purpose : -//======================================================================= - -inline void TopoDS_TShape::Convex(const Standard_Boolean M) -{ - if (M) myFlags |= TopoDS_TShape_Flags_Convex; - else myFlags &= ~TopoDS_TShape_Flags_Convex; -} - -//======================================================================= -//function : Shapes -//purpose : -//======================================================================= - -inline const TopoDS_ListOfShape& TopoDS_TShape::Shapes() const -{ - return myShapes; -} - -//======================================================================= -//function : ChangeShapes -//purpose : -//======================================================================= - -inline TopoDS_ListOfShape& TopoDS_TShape::ChangeShapes() -{ - return myShapes; -} diff --git a/src/TopoDS/TopoDS_TShell.cxx b/src/TopoDS/TopoDS_TShell.cxx index 0edfdde76f..b84a460341 100644 --- a/src/TopoDS/TopoDS_TShell.cxx +++ b/src/TopoDS/TopoDS_TShell.cxx @@ -17,8 +17,8 @@ #include #include -#include #include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TShell,TopoDS_TShape) diff --git a/src/TopoDS/TopoDS_TSolid.cxx b/src/TopoDS/TopoDS_TSolid.cxx index e3415327e1..18eba52ab2 100644 --- a/src/TopoDS/TopoDS_TSolid.cxx +++ b/src/TopoDS/TopoDS_TSolid.cxx @@ -17,8 +17,8 @@ #include #include -#include #include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TSolid,TopoDS_TShape) diff --git a/src/TopoDS/TopoDS_TVertex.cxx b/src/TopoDS/TopoDS_TVertex.cxx index cc1dea4a3a..58ae31c7f2 100644 --- a/src/TopoDS/TopoDS_TVertex.cxx +++ b/src/TopoDS/TopoDS_TVertex.cxx @@ -18,6 +18,7 @@ #include #include #include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TVertex,TopoDS_TShape) diff --git a/src/TopoDS/TopoDS_TWire.cxx b/src/TopoDS/TopoDS_TWire.cxx index a60ac6601f..c83c788ae1 100644 --- a/src/TopoDS/TopoDS_TWire.cxx +++ b/src/TopoDS/TopoDS_TWire.cxx @@ -17,8 +17,8 @@ #include #include -#include #include +#include IMPLEMENT_STANDARD_RTTIEXT(TopoDS_TWire,TopoDS_TShape) diff --git a/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx b/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx index 7c2b382500..0584d37f38 100644 --- a/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx +++ b/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx @@ -21,7 +21,6 @@ #include #include #include -#include #include #include #include diff --git a/src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx b/src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx index 4612f7f308..c3aea8c8a2 100644 --- a/src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx +++ b/src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx @@ -23,7 +23,6 @@ #include #include #include -#include #include #include #include diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx b/src/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx index c8818ecae0..35e6068509 100644 --- a/src/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx +++ b/src/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx @@ -47,7 +47,6 @@ #include #include #include -#include #include #include #include @@ -111,7 +110,6 @@ void TopoDSToStep_MakeStepEdge::Init(const TopoDS_Edge& aEdge, } #define Nbpt 21 - TopoDS_Iterator It; Standard_Integer i; Standard_Real U, U1, U2; gp_Pnt P; diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx b/src/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx index f669e70c23..115e1a9010 100644 --- a/src/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx +++ b/src/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx @@ -76,7 +76,6 @@ #include #include #include -#include #include #include #include @@ -152,7 +151,6 @@ void TopoDSToStep_MakeStepFace::Init(const TopoDS_Face& aFace, return; } - TopoDS_Iterator It; Standard_Integer i; //BRepAdaptor_Surface SA = BRepAdaptor_Surface(ForwardFace); diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx b/src/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx index 3e54c8bfd3..07d6e5b6e2 100644 --- a/src/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx +++ b/src/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx @@ -40,7 +40,6 @@ #include #include #include -#include #include #include #include @@ -90,7 +89,6 @@ void TopoDSToStep_MakeStepWire::Init(const TopoDS_Wire& aWire, return; } - TopoDS_Iterator It; Standard_Integer i; if (aWire.Orientation() == TopAbs_INTERNAL || diff --git a/src/TransferBRep/TransferBRep.cxx b/src/TransferBRep/TransferBRep.cxx index b9c45100b7..831f1fcfec 100644 --- a/src/TransferBRep/TransferBRep.cxx +++ b/src/TransferBRep/TransferBRep.cxx @@ -28,7 +28,6 @@ #include #include #include -#include #include #include #include diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx index 44c304563a..480a1d9ad9 100644 --- a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx +++ b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx @@ -1957,9 +1957,7 @@ Standard_Boolean XCAFDoc_ShapeTool::updateComponent(const TDF_Label& theItemLabe // Compare the number of components in XDE structure with the number of // components in topological structure. A component may happen to be removed, // so we have to update the assembly compound - Standard_Integer aNumTopoComponents = 0; - for ( TopoDS_Iterator aTopIt(aCurrentRootShape); aTopIt.More(); aTopIt.Next() ) - aNumTopoComponents++; + Standard_Integer aNumTopoComponents = aCurrentRootShape.NbChildren(); // if ( aNumTopoComponents != aComponentLabs.Length() ) isModified = Standard_True; diff --git a/src/XCAFPrs/XCAFPrs.cxx b/src/XCAFPrs/XCAFPrs.cxx index 762eb4405a..053c3e2f4f 100644 --- a/src/XCAFPrs/XCAFPrs.cxx +++ b/src/XCAFPrs/XCAFPrs.cxx @@ -303,8 +303,7 @@ void XCAFPrs::CollectStyleSettings (const TDF_Label& theLabel, TopoDS_Shape aSubshape = XCAFDoc_ShapeTool::GetShape (aLabel); if (aSubshape.ShapeType() == TopAbs_COMPOUND) { - const TopoDS_Iterator aShapeIter (aSubshape); - if (!aShapeIter.More()) + if (aSubshape.NbChildren() == 0) { continue; } diff --git a/src/XCAFPrs/XCAFPrs_AISObject.cxx b/src/XCAFPrs/XCAFPrs_AISObject.cxx index eb33f41910..d4010debbf 100644 --- a/src/XCAFPrs/XCAFPrs_AISObject.cxx +++ b/src/XCAFPrs/XCAFPrs_AISObject.cxx @@ -225,8 +225,7 @@ void XCAFPrs_AISObject::Compute (const Handle(PrsMgr_PresentationManager3d)& the if (myshape.ShapeType() == TopAbs_COMPOUND) { - TopoDS_Iterator anExplor (myshape); - if (!anExplor.More()) + if (myshape.NbChildren() == 0) { return; }