diff --git a/dox/dev_guides/upgrade/upgrade.md b/dox/dev_guides/upgrade/upgrade.md index cee4fc82f2..24dfcf10fb 100644 --- a/dox/dev_guides/upgrade/upgrade.md +++ b/dox/dev_guides/upgrade/upgrade.md @@ -1453,3 +1453,51 @@ The following public method has been removed: The methods BuildPCurveForEdgeOnPlane and BuildPCurveForEdgesOnPlane have been moved from the class BOPTools_AlgoTools2D to the more lower level class BRepLib. + +@subsection upgrade_721_removed Removed features + +The following obsolete features have been removed: +* The package BOPCol has been fully removed: + - *BOPCol_BaseAllocator* is replaced with *Handle(NCollection_BaseAllocator)*; + - *BOPCol_BoxBndTree* is replaced with *BOPTools_BoxBndTree*; + - *BOPCol_Box2DBndTree* is removed as unused; + - *BOPCol_DataMapOfIntegerInteger* is replaced with *TColStd_DataMapOfIntegerInteger*; + - *BOPCol_DataMapOfIntegerListOfInteger* is replaced with *TColStd_DataMapOfIntegerListOfInteger*; + - *BOPCol_DataMapOfIntegerListOfShape* is replaced with *TopTools_DataMapOfIntegerListOfShape*; + - *BOPCol_DataMapOfIntegerMapOfInteger.hxx* is removed as unused; + - *BOPCol_DataMapOfIntegerReal* is replaced with *TColStd_DataMapOfIntegerReal*; + - *BOPCol_DataMapOfIntegerShape* is replaced with *TopTools_DataMapOfIntegerShape*; + - *BOPCol_DataMapOfShapeBox* is replaced with *TopTools_DataMapOfShapeBox*; + - *BOPCol_DataMapOfShapeInteger* is replaced with *TopTools_DataMapOfShapeInteger*; + - *BOPCol_DataMapOfShapeListOfShape* is replaced with *TopTools_DataMapOfShapeListOfShape*; + - *BOPCol_DataMapOfShapeReal* is replaced with *TopTools_DataMapOfShapeReal*; + - *BOPCol_DataMapOfShapeShape* is replaced with *TopTools_DataMapOfShapeShape*; + - *BOPCol_DataMapOfTransientAddress* is removed as unused; + - *BOPCol_IndexedDataMapOfIntegerListOfInteger* is removed as unused; + - *BOPCol_IndexedDataMapOfShapeBox* is removed as unused; + - *BOPCol_IndexedDataMapOfShapeInteger* is removed as unused; + - *BOPCol_IndexedDataMapOfShapeListOfShape* is replaced with *TopTools_IndexedDataMapOfShapeListOfShape*; + - *BOPCol_IndexedDataMapOfShapeReal* is removed as unused; + - *BOPCol_IndexedDataMapOfShapeShape* is replaced with *TopTools_IndexedDataMapOfShapeShape*; + - *BOPCol_IndexedMapOfInteger* is replaced with *TColStd_IndexedMapOfInteger*; + - *BOPCol_IndexedMapOfOrientedShape* is replaced with *TopTools_IndexedMapOfOrientedShape*; + - *BOPCol_IndexedMapOfShape* is replaced with *TopTools_IndexedMapOfShape*; + - *BOPCol_ListOfInteger* is replaced with *TColStd_ListOfInteger*; + - *BOPCol_ListOfListOfShape* is replaced with *TopTools_ListOfListOfShape*; + - *BOPCol_ListOfShape* is replaced with *TopTools_ListOfShape*; + - *BOPCol_MapOfInteger* is replaced with *TColStd_MapOfInteger*; + - *BOPCol_MapOfOrientedShape* is replaced with *TopTools_MapOfOrientedShape*; + - *BOPCol_MapOfShape* is replaced with *TopTools_MapOfShape*; + - *BOPCol_PListOfInteger* is removed as unused; + - *BOPCol_PInteger* is removed as unused + - *BOPCol_SequenceOfPnt2d* is replaced with *TColgp_SequenceOfPnt2d*; + - *BOPCol_SequenceOfReal* is replaced with *TColStd_SequenceOfReal*; + - *BOPCol_SequenceOfShape* is replaced with *TopTools_SequenceOfShape*; + - *BOPCol_Parallel* is replaced with *BOPTools_Parallel*; + - *BOPCol_NCVector* is replaced with *NCollection_Vector*; +* The class *BOPDS_PassKey* and containers for it have been removed as unused. +* The unused containers from *IntTools* package have been removed: + - *IntTools_DataMapOfShapeAddress* is removed as unused; + - *IntTools_IndexedDataMapOfTransientAddress* is removed as unused; +* The container *BiTgte_DataMapOfShapeBox* is replaced with *TopTools_DataMapOfShapeBox*; +* The class *BOPTools* has been removed as duplicate of the class *TopExp*; diff --git a/dox/user_guides/boolean_operations/boolean_operations.md b/dox/user_guides/boolean_operations/boolean_operations.md index f76693658b..de6b050d3a 100644 --- a/dox/user_guides/boolean_operations/boolean_operations.md +++ b/dox/user_guides/boolean_operations/boolean_operations.md @@ -1082,8 +1082,8 @@ It is based on the General Fuse algorithm, thus all options of the General Fuse On the low level the Splitter algorithm is implemented in class *BOPAlgo_Splitter*. The usage of this algorithm looks as follows: ~~~~~ BOPAlgo_Splitter aSplitter; -BOPCol_ListOfShape aLSObjects = …; // Objects -BOPCol_ListOfShape aLSTools = …; // Tools +TopTools_ListOfShape aLSObjects = …; // Objects +TopTools_ListOfShape aLSTools = …; // Tools Standard_Boolean bRunParallel = Standard_False; /* parallel or single mode (the default value is FALSE)*/ Standard_Real aTol = 0.0; /* fuzzy option (default value is 0)*/ Standard_Boolean bSafeMode = Standard_False; /* protect or not the arguments from modification*/ @@ -2054,7 +2054,7 @@ This option is useful e.g. for building a solid from the faces of one shell or f The usage of the algorithm on the API level: ~~~~ BOPAlgo_MakerVolume aMV; -BOPCol_ListOfShape aLS = …; // arguments +TopTools_ListOfShape aLS = …; // arguments Standard_Boolean bRunParallel = Standard_False; /* parallel or single mode (the default value is FALSE)*/ Standard_Boolean bIntersect = Standard_True; /* intersect or not the arguments (the default value is TRUE)*/ Standard_Real aTol = 0.0; /* fuzzy option (default value is 0)*/ @@ -2148,7 +2148,7 @@ It is possible to create typed Containers from the parts added into result by us Here is the example of the algorithm use on the API level: ~~~~ BOPAlgo_CellsBuilder aCBuilder; -BOPCol_ListOfShape aLS = …; // arguments +TopTools_ListOfShape aLS = …; // arguments Standard_Boolean bRunParallel = Standard_False; /* parallel or single mode (the default value is FALSE)*/ Standard_Real aTol = 0.0; /* fuzzy option (the default value is 0)*/ Standard_Boolean bSafeMode = Standard_False; /* protect or not the arguments from modification*/ @@ -2169,8 +2169,8 @@ if (aCBuilder.HasErrors()) { // check error status const TopoDS_Shape& anEmptyRes = aCBuilder.Shape(); // empty result, as nothing has been added yet const TopoDS_Shape& anAllCells = aCBuilder.GetAllParts(); //all split parts // -BOPCol_ListOfShape aLSToTake = ...; // parts of these arguments will be taken into result -BOPCol_ListOfShape aLSToAvoid = ...; // parts of these arguments will not be taken into result +TopTools_ListOfShape aLSToTake = ...; // parts of these arguments will be taken into result +TopTools_ListOfShape aLSToAvoid = ...; // parts of these arguments will not be taken into result // Standard_Integer iMaterial = 1; // defines the material for the cells Standard_Boolean bUpdate = Standard_False; // defines whether to update the result right now or not diff --git a/src/BOPAlgo/BOPAlgo_Algo.hxx b/src/BOPAlgo/BOPAlgo_Algo.hxx index 5a39fd0f2e..fb62632d28 100644 --- a/src/BOPAlgo/BOPAlgo_Algo.hxx +++ b/src/BOPAlgo/BOPAlgo_Algo.hxx @@ -24,8 +24,6 @@ #include -#include - //! The class provides the root interface for the algorithms in Boolean Component.
class BOPAlgo_Algo : public BOPAlgo_Options { @@ -41,7 +39,7 @@ protected: Standard_EXPORT BOPAlgo_Algo(); Standard_EXPORT virtual ~BOPAlgo_Algo(); - Standard_EXPORT BOPAlgo_Algo(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_Algo(const Handle(NCollection_BaseAllocator)& theAllocator); //! Checks input data Standard_EXPORT virtual void CheckData(); diff --git a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx b/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx index d9df6f8a6d..23aa6f5a13 100644 --- a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx +++ b/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx @@ -16,13 +16,8 @@ #include #include #include -#include -#include -#include -#include #include #include -#include #include #include #include @@ -50,6 +45,11 @@ #include #include #include +#include +#include +#include +#include + // ================================================================================ // function: Constructor // purpose: @@ -353,7 +353,7 @@ void BOPAlgo_ArgumentAnalyzer::TestSelfInterferences() // Standard_Integer n1, n2; BOPDS_MapIteratorOfMapOfPair aItMPK; - BOPCol_ListOfShape anArgs; + TopTools_ListOfShape anArgs; BOPAlgo_CheckerSI aChecker; // anArgs.Append(aS); @@ -535,7 +535,7 @@ void BOPAlgo_ArgumentAnalyzer::TestRebuildFace() continue; TopExp_Explorer anExp(aS, TopAbs_FACE); - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; for(; anExp.More(); anExp.Next()) { const TopoDS_Face& aFace = *(TopoDS_Face*)&(anExp.Current()); @@ -566,7 +566,7 @@ void BOPAlgo_ArgumentAnalyzer::TestRebuildFace() aBF.SetFace(aFace); aBF.SetShapes(aLS); aBF.Perform(); - const BOPCol_ListOfShape& aLF = aBF.Areas(); + const TopTools_ListOfShape& aLF = aBF.Areas(); Standard_Boolean bBadFace = Standard_False; if(aLF.Extent() != 1) { @@ -647,8 +647,8 @@ void BOPAlgo_ArgumentAnalyzer::TestTangent() } TopExp_Explorer anExp1(myShape1, theType); TopExp_Explorer anExp2(myShape2, theType); - BOPCol_SequenceOfShape aSeq1, aSeq2; - BOPCol_MapOfShape aMap1, aMap2; + TopTools_SequenceOfShape aSeq1, aSeq2; + TopTools_MapOfShape aMap1, aMap2; for(; anExp1.More(); anExp1.Next()) { const TopoDS_Shape& aS1 = anExp1.Current(); @@ -675,7 +675,7 @@ void BOPAlgo_ArgumentAnalyzer::TestTangent() for(i = 1; i <= aSeq1.Length(); i++) { const TopoDS_Shape& aS1 = aSeq1.Value(i); - BOPCol_ListOfShape aListOfS2; + TopTools_ListOfShape aListOfS2; Standard_Integer nbs = 0; for(j = 1; j <= aSeq2.Length(); j++) { @@ -731,7 +731,7 @@ void BOPAlgo_ArgumentAnalyzer::TestTangent() aResult.SetShape1(myShape1); aResult.SetShape2(myShape2); aResult.AddFaultyShape1(aS1); - BOPCol_ListIteratorOfListOfShape anIt(aListOfS2); + TopTools_ListIteratorOfListOfShape anIt(aListOfS2); for(; anIt.More(); anIt.Next()) { aResult.AddFaultyShape2(anIt.Value()); @@ -748,7 +748,7 @@ void BOPAlgo_ArgumentAnalyzer::TestTangent() for(i = 1; i <= aSeq2.Length(); i++) { const TopoDS_Shape& aS2 = aSeq2.Value(i); - BOPCol_ListOfShape aListOfS1; + TopTools_ListOfShape aListOfS1; Standard_Integer nbs = 0; for(j = 1; j <= aSeq1.Length(); j++) { @@ -765,7 +765,7 @@ void BOPAlgo_ArgumentAnalyzer::TestTangent() aResult.SetShape1(myShape1); aResult.SetShape2(myShape2); - BOPCol_ListIteratorOfListOfShape anIt(aListOfS1); + TopTools_ListIteratorOfListOfShape anIt(aListOfS1); for(; anIt.More(); anIt.Next()) { aResult.AddFaultyShape1(anIt.Value()); @@ -816,7 +816,7 @@ void BOPAlgo_ArgumentAnalyzer::TestContinuity() continue; } // - BOPCol_IndexedMapOfShape aMS; + TopTools_IndexedMapOfShape aMS; //Edges aExp.Init(aS, TopAbs_EDGE); for (; aExp.More(); aExp.Next()) { diff --git a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx b/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx index 540e8f2fcc..b26d3d2c3c 100644 --- a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx +++ b/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx @@ -22,11 +22,10 @@ #include #include +#include #include #include #include -#include -#include #include class TopoDS_Shape; diff --git a/src/BOPAlgo/BOPAlgo_BOP.cxx b/src/BOPAlgo/BOPAlgo_BOP.cxx index 4ae1cb0a16..0207408dc8 100644 --- a/src/BOPAlgo/BOPAlgo_BOP.cxx +++ b/src/BOPAlgo/BOPAlgo_BOP.cxx @@ -18,54 +18,49 @@ #include #include #include -#include -#include -#include -#include -#include #include -#include #include #include +#include #include #include #include #include #include #include +#include #include #include #include #include #include +#include +#include +#include +#include -typedef NCollection_IndexedDataMap - BOPTools_IndexedDataMapOfSetShape; -// static TopAbs_ShapeEnum TypeToExplore(const Standard_Integer theDim); // static void CollectContainers(const TopoDS_Shape& theS, - BOPCol_ListOfShape& theLSC); + TopTools_ListOfShape& theLSC); // static - void RemoveDuplicates(BOPCol_ListOfShape& theContainers); + void RemoveDuplicates(TopTools_ListOfShape& theContainers); // static - void RemoveDuplicates(BOPCol_ListOfShape& theContainers, + void RemoveDuplicates(TopTools_ListOfShape& theContainers, const TopAbs_ShapeEnum theType); // static - Standard_Integer NbCommonItemsInMap(const BOPCol_MapOfShape& theM1, - const BOPCol_MapOfShape& theM2); + Standard_Integer NbCommonItemsInMap(const TopTools_MapOfShape& theM1, + const TopTools_MapOfShape& theM2); // static void MapFacesToBuildSolids(const TopoDS_Shape& theSol, - BOPCol_IndexedDataMapOfShapeListOfShape& theMFS, - BOPCol_IndexedMapOfShape& theMFI); + TopTools_IndexedDataMapOfShapeListOfShape& theMFS, + TopTools_IndexedMapOfShape& theMFI); //======================================================================= //function : @@ -128,7 +123,7 @@ void BOPAlgo_BOP::CheckData() { Standard_Integer i, j, iDim, aNbArgs, aNbTools; Standard_Boolean bFuse; - BOPCol_ListIteratorOfListOfShape aItLS; + TopTools_ListIteratorOfListOfShape aItLS; // if (!(myOperation==BOPAlgo_COMMON || myOperation==BOPAlgo_FUSE || @@ -172,7 +167,7 @@ void BOPAlgo_BOP::CheckData() Standard_Boolean bHasValid[2] = {Standard_False, Standard_False}; // for (i=0; i<2; ++i) { - const BOPCol_ListOfShape& aLS=(!i)? myArguments : myTools; + const TopTools_ListOfShape& aLS=(!i)? myArguments : myTools; aItLS.Initialize(aLS); for (j=0; aItLS.More(); aItLS.Next(), ++j) { const TopoDS_Shape& aS=aItLS.Value(); @@ -237,8 +232,8 @@ Standard_Boolean BOPAlgo_BOP::TreatEmptyShape() } // // Find non-empty objects - BOPCol_ListOfShape aLValidObjs; - BOPCol_ListIteratorOfListOfShape aItLS(myArguments); + TopTools_ListOfShape aLValidObjs; + TopTools_ListIteratorOfListOfShape aItLS(myArguments); for (; aItLS.More(); aItLS.Next()) { if (!BOPTools_AlgoTools3D::IsEmptyShape(aItLS.Value())) { aLValidObjs.Append(aItLS.Value()); @@ -246,7 +241,7 @@ Standard_Boolean BOPAlgo_BOP::TreatEmptyShape() } // // Find non-empty tools - BOPCol_ListOfShape aLValidTools; + TopTools_ListOfShape aLValidTools; aItLS.Initialize(myTools); for (; aItLS.More() ; aItLS.Next()) { if (!BOPTools_AlgoTools3D::IsEmptyShape(aItLS.Value())) { @@ -271,7 +266,7 @@ Standard_Boolean BOPAlgo_BOP::TreatEmptyShape() // so we can build the result of operation right away just by // choosing the list of shapes to add to result, depending on // the type of the operation - BOPCol_ListOfShape *pLResult = NULL; + TopTools_ListOfShape *pLResult = NULL; // switch (myOperation) { case BOPAlgo_FUSE: @@ -309,17 +304,17 @@ void BOPAlgo_BOP::BuildResult(const TopAbs_ShapeEnum theType) { TopAbs_ShapeEnum aType; BRep_Builder aBB; - BOPCol_MapOfShape aM; - BOPCol_ListIteratorOfListOfShape aIt, aItIm; + TopTools_MapOfShape aM; + TopTools_ListIteratorOfListOfShape aIt, aItIm; // - const BOPCol_ListOfShape& aLA=myDS->Arguments(); + const TopTools_ListOfShape& aLA=myDS->Arguments(); aIt.Initialize(aLA); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS=aIt.Value(); aType=aS.ShapeType(); if (aType==theType) { if (myImages.IsBound(aS)){ - const BOPCol_ListOfShape& aLSIm=myImages.Find(aS); + const TopTools_ListOfShape& aLSIm=myImages.Find(aS); aItIm.Initialize(aLSIm); for (; aItIm.More(); aItIm.Next()) { const TopoDS_Shape& aSIm=aItIm.Value(); @@ -344,7 +339,7 @@ void BOPAlgo_BOP::Perform() { Handle(NCollection_BaseAllocator) aAllocator; BOPAlgo_PaveFiller* pPF; - BOPCol_ListIteratorOfListOfShape aItLS; + TopTools_ListIteratorOfListOfShape aItLS; // GetReport()->Clear(); // @@ -357,7 +352,7 @@ void BOPAlgo_BOP::Perform() // aAllocator= NCollection_BaseAllocator::CommonBaseAllocator(); - BOPCol_ListOfShape aLS(aAllocator); + TopTools_ListOfShape aLS(aAllocator); // aItLS.Initialize(myArguments); for (; aItLS.More(); aItLS.Next()) { @@ -530,7 +525,7 @@ void BOPAlgo_BOP::BuildRC() // // A. Fuse if (myOperation == BOPAlgo_FUSE) { - BOPCol_MapOfShape aMFence; + TopTools_MapOfShape aMFence; aType = TypeToExplore(myDims[0]); TopExp_Explorer aExp(myShape, aType); for (; aExp.More(); aExp.Next()) { @@ -547,13 +542,13 @@ void BOPAlgo_BOP::BuildRC() // Standard_Integer i, j, aNb, iDim; Standard_Boolean bCheckEdges, bContains, bCut21, bCommon; - BOPCol_ListIteratorOfListOfShape aItLS; + TopTools_ListIteratorOfListOfShape aItLS; // // prepare the building elements of arguments to get its splits - BOPCol_IndexedMapOfShape aMArgs, aMTools; + TopTools_IndexedMapOfShape aMArgs, aMTools; for (i = 0; i < 2; ++i) { - const BOPCol_ListOfShape& aLS = !i ? myArguments : myTools; - BOPCol_IndexedMapOfShape& aMS = !i ? aMArgs : aMTools; + const TopTools_ListOfShape& aLS = !i ? myArguments : myTools; + TopTools_IndexedMapOfShape& aMS = !i ? aMArgs : aMTools; aItLS.Initialize(aLS); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aS = aItLS.Value(); @@ -562,19 +557,19 @@ void BOPAlgo_BOP::BuildRC() continue; } aType = TypeToExplore(iDim); - BOPTools::MapShapes(aS, aType, aMS); + TopExp::MapShapes(aS, aType, aMS); } } // bCheckEdges = Standard_False; // // get splits of building elements - BOPCol_IndexedMapOfShape aMArgsIm, aMToolsIm; + TopTools_IndexedMapOfShape aMArgsIm, aMToolsIm; BOPTools_IndexedDataMapOfSetShape aMSetArgs, aMSetTools; for (i = 0; i < 2; ++i) { - const BOPCol_IndexedMapOfShape& aMS = !i ? aMArgs : aMTools; - BOPCol_IndexedMapOfShape& aMSIm = !i ? aMArgsIm : aMToolsIm; + const TopTools_IndexedMapOfShape& aMS = !i ? aMArgs : aMTools; + TopTools_IndexedMapOfShape& aMSIm = !i ? aMArgsIm : aMToolsIm; BOPTools_IndexedDataMapOfSetShape& aMSet = !i ? aMSetArgs : aMSetTools; // aNb = aMS.Extent(); @@ -590,7 +585,7 @@ void BOPAlgo_BOP::BuildRC() } // if (myImages.IsBound(aS)) { - const BOPCol_ListOfShape& aLSIm = myImages.Find(aS); + const TopTools_ListOfShape& aLSIm = myImages.Find(aS); aItLS.Initialize(aLSIm); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aSIm = aItLS.Value(); @@ -618,11 +613,11 @@ void BOPAlgo_BOP::BuildRC() bCommon = (myOperation == BOPAlgo_COMMON); bCut21 = (myOperation == BOPAlgo_CUT21); // - const BOPCol_IndexedMapOfShape& aMIt = bCut21 ? aMToolsIm : aMArgsIm; - const BOPCol_IndexedMapOfShape& aMCheck = bCut21 ? aMArgsIm : aMToolsIm; + const TopTools_IndexedMapOfShape& aMIt = bCut21 ? aMToolsIm : aMArgsIm; + const TopTools_IndexedMapOfShape& aMCheck = bCut21 ? aMArgsIm : aMToolsIm; const BOPTools_IndexedDataMapOfSetShape& aMSetCheck = bCut21 ? aMSetArgs : aMSetTools; // - BOPCol_IndexedMapOfShape aMCheckExp, aMItExp; + TopTools_IndexedMapOfShape aMCheckExp, aMItExp; // if (bCommon) { aNb = aMIt.Extent(); @@ -631,7 +626,7 @@ void BOPAlgo_BOP::BuildRC() iDimMax = BOPTools_AlgoTools::Dimension(aS); for (iDim = iDimMin; iDim < iDimMax; ++iDim) { aType = TypeToExplore(iDim); - BOPTools::MapShapes(aS, aType, aMItExp); + TopExp::MapShapes(aS, aType, aMItExp); } aMItExp.Add(aS); } @@ -646,7 +641,7 @@ void BOPAlgo_BOP::BuildRC() iDimMax = BOPTools_AlgoTools::Dimension(aS); for (iDim = iDimMin; iDim < iDimMax; ++iDim) { aType = TypeToExplore(iDim); - BOPTools::MapShapes(aS, aType, aMCheckExp); + TopExp::MapShapes(aS, aType, aMCheckExp); } aMCheckExp.Add(aS); } @@ -676,7 +671,7 @@ void BOPAlgo_BOP::BuildRC() // // filter result for COMMON operation if (bCommon) { - BOPCol_MapOfShape aMFence; + TopTools_MapOfShape aMFence; TopExp_Explorer aExp; TopoDS_Compound aCx; aBB.MakeCompound(aCx); @@ -688,7 +683,7 @@ void BOPAlgo_BOP::BuildRC() const TopoDS_Shape& aS = aExp.Current(); if (aMFence.Add(aS)) { aBB.Add(aCx, aS); - BOPTools::MapShapes(aS, aMFence); + TopExp::MapShapes(aS, aMFence); } } } @@ -702,10 +697,10 @@ void BOPAlgo_BOP::BuildRC() // // The squats around degenerated edges Standard_Integer nVD; - BOPCol_IndexedMapOfShape aMVC; + TopTools_IndexedMapOfShape aMVC; // // 1. Vertices of aC - BOPTools::MapShapes(aC, TopAbs_VERTEX, aMVC); + TopExp::MapShapes(aC, TopAbs_VERTEX, aMVC); // // 2. DE candidates aNb = myDS->NbSourceShapes(); @@ -756,18 +751,18 @@ void BOPAlgo_BOP::BuildShape() // Standard_Integer i; TopAbs_ShapeEnum aType, aT1, aT2; - BOPCol_ListOfShape aLSC, aLCB; - BOPCol_ListIteratorOfListOfShape aItLS, aItLSIm, aItLCB; + TopTools_ListOfShape aLSC, aLCB; + TopTools_ListIteratorOfListOfShape aItLS, aItLSIm, aItLCB; TopoDS_Iterator aIt; BRep_Builder aBB; TopoDS_Shape aRC, aRCB; // - BOPCol_MapOfShape aMSRC; - BOPTools::MapShapes(myRC, aMSRC); + TopTools_MapOfShape aMSRC; + TopExp::MapShapes(myRC, aMSRC); // // collect images of containers for (i = 0; i < 2; ++i) { - const BOPCol_ListOfShape& aLS = !i ? myArguments : myTools; + const TopTools_ListOfShape& aLS = !i ? myArguments : myTools; // aItLS.Initialize(aLS); for (; aItLS.More(); aItLS.Next()) { @@ -777,8 +772,8 @@ void BOPAlgo_BOP::BuildShape() } } // make containers - BOPCol_ListOfShape aLCRes; - BOPCol_MapOfShape aMInpFence; + TopTools_ListOfShape aLCRes; + TopTools_MapOfShape aMInpFence; aItLS.Initialize(aLSC); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aSC = aItLS.Value(); @@ -790,7 +785,7 @@ void BOPAlgo_BOP::BuildShape() for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); if (myImages.IsBound(aS)) { - const BOPCol_ListOfShape& aLSIm = myImages.Find(aS); + const TopTools_ListOfShape& aLSIm = myImages.Find(aS); // aItLSIm.Initialize(aLSIm); for (; aItLSIm.More(); aItLSIm.Next()) { @@ -866,14 +861,14 @@ void BOPAlgo_BOP::BuildShape() } // create map of containers - BOPCol_MapOfShape aMSResult; - BOPTools::MapShapes(aResult, aMSResult); + TopTools_MapOfShape aMSResult; + TopExp::MapShapes(aResult, aMSResult); // get input non-container shapes - BOPCol_ListOfShape aLSNonCont; + TopTools_ListOfShape aLSNonCont; for (i = 0; i < 2; ++i) { - const BOPCol_ListOfShape& aLS = !i ? myArguments : myTools; + const TopTools_ListOfShape& aLS = !i ? myArguments : myTools; aItLS.Initialize(aLS); for (; aItLS.More(); aItLS.Next()) { @@ -889,7 +884,7 @@ void BOPAlgo_BOP::BuildShape() const TopoDS_Shape& aS = aItLS.Value(); if (myImages.IsBound(aS)) { - const BOPCol_ListOfShape& aLSIm = myImages.Find(aS); + const TopTools_ListOfShape& aLSIm = myImages.Find(aS); aItLSIm.Initialize(aLSIm); for (; aItLSIm.More(); aItLSIm.Next()) { @@ -911,18 +906,18 @@ void BOPAlgo_BOP::BuildShape() void BOPAlgo_BOP::BuildSolid() { // Containers - BOPCol_ListOfShape aLSC; + TopTools_ListOfShape aLSC; // - BOPCol_ListIteratorOfListOfShape aItLS; + TopTools_ListIteratorOfListOfShape aItLS; TopExp_Explorer aExp; BRep_Builder aBB; // // Get solids from input arguments - BOPCol_MapOfShape aMSA; + TopTools_MapOfShape aMSA; // Map the arguments to find shared faces - BOPCol_IndexedDataMapOfShapeListOfShape aMFS; + TopTools_IndexedDataMapOfShapeListOfShape aMFS; for (Standard_Integer i = 0; i < 2; ++i) { - const BOPCol_ListOfShape& aLSA = (i) ? myArguments : myTools; + const TopTools_ListOfShape& aLSA = (i) ? myArguments : myTools; aItLS.Initialize(aLSA); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aSA = aItLS.Value(); @@ -930,7 +925,7 @@ void BOPAlgo_BOP::BuildSolid() for (; aExp.More(); aExp.Next()) { const TopoDS_Shape& aSol = aExp.Current(); aMSA.Add(aSol); - BOPTools::MapShapesAndAncestors(aSol, TopAbs_FACE, TopAbs_SOLID, aMFS); + TopExp::MapShapesAndAncestors(aSol, TopAbs_FACE, TopAbs_SOLID, aMFS); } // // get Compsolids from input arguments @@ -939,10 +934,10 @@ void BOPAlgo_BOP::BuildSolid() } // // Find solids in input arguments sharing faces with other solids - BOPCol_MapOfShape aMTSols; + TopTools_MapOfShape aMTSols; Standard_Integer i, aNb = aMFS.Extent(); for (i = 1; i < aNb; ++i) { - const BOPCol_ListOfShape& aLSols = aMFS(i); + const TopTools_ListOfShape& aLSols = aMFS(i); if (aLSols.Extent() > 1) { aItLS.Initialize(aLSols); for(; aItLS.More(); aItLS.Next()) { @@ -952,11 +947,11 @@ void BOPAlgo_BOP::BuildSolid() } // // Possibly untouched solids - to be added to results as is - BOPCol_IndexedMapOfShape aMUSols; + TopTools_IndexedMapOfShape aMUSols; // Use map to chose the most outer faces to build result solids aMFS.Clear(); // Internal faces - BOPCol_IndexedMapOfShape aMFI; + TopTools_IndexedMapOfShape aMFI; // TopoDS_Iterator aIt(myRC); for (; aIt.More(); aIt.Next()) { @@ -999,16 +994,16 @@ void BOPAlgo_BOP::BuildSolid() } } // - BOPCol_IndexedDataMapOfShapeListOfShape aMEF; + TopTools_IndexedDataMapOfShapeListOfShape aMEF; // Split faces will be added in the end // to avoid errors in BuilderSolid algorithm - BOPCol_ListOfShape aLF, aLFx; + TopTools_ListOfShape aLF, aLFx; aNb = aMFS.Extent(); for (i = 1; i <= aNb; ++i) { - const BOPCol_ListOfShape& aLSx = aMFS(i); + const TopTools_ListOfShape& aLSx = aMFS(i); if (aLSx.Extent() == 1) { const TopoDS_Shape& aFx = aMFS.FindKey(i); - BOPTools::MapShapesAndAncestors(aFx, TopAbs_EDGE, TopAbs_FACE, aMEF); + TopExp::MapShapesAndAncestors(aFx, TopAbs_EDGE, TopAbs_FACE, aMEF); if (IsBoundSplits(aFx, aMEF)){ aLFx.Append(aFx); continue; @@ -1018,7 +1013,7 @@ void BOPAlgo_BOP::BuildSolid() } // // Faces to build result solids - BOPCol_ListOfShape aSFS; + TopTools_ListOfShape aSFS; aItLS.Initialize(aLF); for(; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aFx = aItLS.Value(); @@ -1053,7 +1048,7 @@ void BOPAlgo_BOP::BuildSolid() return; } // new solids - const BOPCol_ListOfShape& aLSR = aSB.Areas(); + const TopTools_ListOfShape& aLSR = aSB.Areas(); // // add new solids to result aItLS.Initialize(aLSR); @@ -1104,19 +1099,19 @@ void BOPAlgo_BOP::BuildSolid() } // // get splits of faces of the Compsolid arguments - BOPCol_MapOfShape aMFCs; + TopTools_MapOfShape aMFCs; aItLS.Initialize(aLSC); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aCs = aItLS.Value(); aExp.Init(aCs, TopAbs_FACE); for (; aExp.More(); aExp.Next()) { const TopoDS_Shape& aF = aExp.Current(); - const BOPCol_ListOfShape* pLFIm = myImages.Seek(aF); + const TopTools_ListOfShape* pLFIm = myImages.Seek(aF); if (!pLFIm) { aMFCs.Add(aF); } else { - BOPCol_ListIteratorOfListOfShape aItLFIm(*pLFIm); + TopTools_ListIteratorOfListOfShape aItLFIm(*pLFIm); for (; aItLFIm.More(); aItLFIm.Next()) { aMFCs.Add(aItLFIm.Value()); } @@ -1125,7 +1120,7 @@ void BOPAlgo_BOP::BuildSolid() } // // build connexity blocks from new solids - BOPCol_ListOfShape aLCBS; + TopTools_ListOfShape aLCBS; BOPTools_AlgoTools::MakeConnexityBlocks(aRC, TopAbs_FACE, TopAbs_SOLID, aLCBS); // aItLS.Initialize(aLCBS); @@ -1168,14 +1163,14 @@ void BOPAlgo_BOP::BuildSolid() //======================================================================= Standard_Boolean BOPAlgo_BOP::IsBoundSplits (const TopoDS_Shape& aS, - BOPCol_IndexedDataMapOfShapeListOfShape& aMEF) + TopTools_IndexedDataMapOfShapeListOfShape& aMEF) { Standard_Boolean bRet = Standard_False; if (mySplits.IsBound(aS) || myOrigins.IsBound(aS)) { return !bRet; } - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; Standard_Integer aNbLS; TopAbs_Orientation anOr; // @@ -1193,7 +1188,7 @@ Standard_Boolean BOPAlgo_BOP::IsBoundSplits continue; } // - const BOPCol_ListOfShape& aLS=aMEF.FindFromKey(aE); + const TopTools_ListOfShape& aLS=aMEF.FindFromKey(aE); aNbLS = aLS.Extent(); if (!aNbLS) { continue; @@ -1242,7 +1237,7 @@ TopAbs_ShapeEnum TypeToExplore(const Standard_Integer theDim) //purpose : //======================================================================= void CollectContainers(const TopoDS_Shape& theS, - BOPCol_ListOfShape& theLSC) + TopTools_ListOfShape& theLSC) { TopAbs_ShapeEnum aType = theS.ShapeType(); if (aType == TopAbs_WIRE || @@ -1267,7 +1262,7 @@ void CollectContainers(const TopoDS_Shape& theS, //function : RemoveDuplicates //purpose : Filters the containers with identical contents //======================================================================= -void RemoveDuplicates(BOPCol_ListOfShape& theContainers) +void RemoveDuplicates(TopTools_ListOfShape& theContainers) { RemoveDuplicates(theContainers, TopAbs_WIRE); RemoveDuplicates(theContainers, TopAbs_SHELL); @@ -1278,12 +1273,12 @@ void RemoveDuplicates(BOPCol_ListOfShape& theContainers) //function : RemoveDuplicates //purpose : Filters the containers of given type with identical contents //======================================================================= -void RemoveDuplicates(BOPCol_ListOfShape& theContainers, +void RemoveDuplicates(TopTools_ListOfShape& theContainers, const TopAbs_ShapeEnum theType) { // get containers of given type - BOPCol_ListOfShape aLC; - BOPCol_ListIteratorOfListOfShape aItLC(theContainers); + TopTools_ListOfShape aLC; + TopTools_ListIteratorOfListOfShape aItLC(theContainers); for (; aItLC.More(); aItLC.Next()) { const TopoDS_Shape& aC = aItLC.Value(); if (aC.ShapeType() == theType) { @@ -1296,13 +1291,13 @@ void RemoveDuplicates(BOPCol_ListOfShape& theContainers, } // // map containers to compare its contents - NCollection_IndexedDataMap aContents; + NCollection_IndexedDataMap aContents; // aItLC.Initialize(aLC); for (; aItLC.More(); aItLC.Next()) { const TopoDS_Shape& aC = aItLC.Value(); // - BOPCol_MapOfShape& aMC = aContents(aContents.Add(aC, BOPCol_MapOfShape())); + TopTools_MapOfShape& aMC = aContents(aContents.Add(aC, TopTools_MapOfShape())); // TopoDS_Iterator aIt(aC); for (; aIt.More(); aIt.Next()) { @@ -1311,7 +1306,7 @@ void RemoveDuplicates(BOPCol_ListOfShape& theContainers, } // // compare the contents of the containers and find duplicates - BOPCol_MapOfShape aDuplicates; + TopTools_MapOfShape aDuplicates; // Standard_Integer i, j, aNb = aContents.Extent(); for (i = 1; i <= aNb; ++i) { @@ -1319,7 +1314,7 @@ void RemoveDuplicates(BOPCol_ListOfShape& theContainers, if (aDuplicates.Contains(aCi)) { continue; } - const BOPCol_MapOfShape& aMi = aContents(i); + const TopTools_MapOfShape& aMi = aContents(i); Standard_Integer aNbi = aMi.Extent(); // for (j = i + 1; j <= aNb; ++j) { @@ -1327,7 +1322,7 @@ void RemoveDuplicates(BOPCol_ListOfShape& theContainers, if (aDuplicates.Contains(aCj)) { continue; } - const BOPCol_MapOfShape& aMj = aContents(j); + const TopTools_MapOfShape& aMj = aContents(j); Standard_Integer aNbj = aMj.Extent(); // Standard_Integer aNbCommon = NbCommonItemsInMap(aMi, aMj); @@ -1364,11 +1359,11 @@ void RemoveDuplicates(BOPCol_ListOfShape& theContainers, //function : NbCommonItemsInMap //purpose : Counts the items contained in both maps //======================================================================= -Standard_Integer NbCommonItemsInMap(const BOPCol_MapOfShape& theM1, - const BOPCol_MapOfShape& theM2) +Standard_Integer NbCommonItemsInMap(const TopTools_MapOfShape& theM1, + const TopTools_MapOfShape& theM2) { - const BOPCol_MapOfShape* aMap1 = &theM1; - const BOPCol_MapOfShape* aMap2 = &theM2; + const TopTools_MapOfShape* aMap1 = &theM1; + const TopTools_MapOfShape* aMap2 = &theM2; // if (theM2.Extent() < theM1.Extent()) { aMap1 = &theM2; @@ -1376,7 +1371,7 @@ Standard_Integer NbCommonItemsInMap(const BOPCol_MapOfShape& theM1, } // Standard_Integer iCommon = 0; - for (BOPCol_MapIteratorOfMapOfShape aIt(*aMap1); aIt.More(); aIt.Next()) { + for (TopTools_MapIteratorOfMapOfShape aIt(*aMap1); aIt.More(); aIt.Next()) { if (aMap2->Contains(aIt.Value())) { ++iCommon; } @@ -1390,8 +1385,8 @@ Standard_Integer NbCommonItemsInMap(const BOPCol_MapOfShape& theM1, // - internal faces. //======================================================================= void MapFacesToBuildSolids(const TopoDS_Shape& theSol, - BOPCol_IndexedDataMapOfShapeListOfShape& theMFS, - BOPCol_IndexedMapOfShape& theMFI) + TopTools_IndexedDataMapOfShapeListOfShape& theMFS, + TopTools_IndexedMapOfShape& theMFI) { TopExp_Explorer aExp(theSol, TopAbs_FACE); for (; aExp.More(); aExp.Next()) { @@ -1402,9 +1397,9 @@ void MapFacesToBuildSolids(const TopoDS_Shape& theSol, continue; } // - BOPCol_ListOfShape* pLSol = theMFS.ChangeSeek(aF); + TopTools_ListOfShape* pLSol = theMFS.ChangeSeek(aF); if (!pLSol) { - pLSol = &theMFS(theMFS.Add(aF, BOPCol_ListOfShape())); + pLSol = &theMFS(theMFS.Add(aF, TopTools_ListOfShape())); pLSol->Append(theSol); } else { diff --git a/src/BOPAlgo/BOPAlgo_BOP.hxx b/src/BOPAlgo/BOPAlgo_BOP.hxx index 4a339bce29..bab184bfec 100644 --- a/src/BOPAlgo/BOPAlgo_BOP.hxx +++ b/src/BOPAlgo/BOPAlgo_BOP.hxx @@ -22,13 +22,11 @@ #include #include #include -#include -#include #include -#include +#include #include #include -#include +#include class TopoDS_Shape; class BOPAlgo_PaveFiller; @@ -77,7 +75,7 @@ public: Standard_EXPORT BOPAlgo_BOP(); Standard_EXPORT virtual ~BOPAlgo_BOP(); - Standard_EXPORT BOPAlgo_BOP(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_BOP(const Handle(NCollection_BaseAllocator)& theAllocator); //! Clears internal fields and arguments Standard_EXPORT virtual void Clear() Standard_OVERRIDE; @@ -104,7 +102,7 @@ protected: Standard_EXPORT void BuildSolid(); - Standard_EXPORT Standard_Boolean IsBoundSplits (const TopoDS_Shape& theS, BOPCol_IndexedDataMapOfShapeListOfShape& theMEF); + Standard_EXPORT Standard_Boolean IsBoundSplits (const TopoDS_Shape& theS, TopTools_IndexedDataMapOfShapeListOfShape& theMEF); //! Treatment of the cases with empty shapes.
//! It returns TRUE if there is nothing to do, i.e. diff --git a/src/BOPAlgo/BOPAlgo_Builder.cxx b/src/BOPAlgo/BOPAlgo_Builder.cxx index 9b2302f554..f0fa58cc79 100644 --- a/src/BOPAlgo/BOPAlgo_Builder.cxx +++ b/src/BOPAlgo/BOPAlgo_Builder.cxx @@ -27,12 +27,11 @@ #include #include -#include - #include #include #include +#include #include @@ -118,9 +117,9 @@ void BOPAlgo_Builder::AddArgument(const TopoDS_Shape& theShape) //function : SetArguments //purpose : //======================================================================= -void BOPAlgo_Builder::SetArguments(const BOPCol_ListOfShape& theShapes) +void BOPAlgo_Builder::SetArguments(const TopTools_ListOfShape& theShapes) { - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // myArguments.Clear(); // @@ -134,7 +133,7 @@ void BOPAlgo_Builder::SetArguments(const BOPCol_ListOfShape& theShapes) //function : Arguments //purpose : //======================================================================= -const BOPCol_ListOfShape& BOPAlgo_Builder::Arguments()const +const TopTools_ListOfShape& BOPAlgo_Builder::Arguments()const { return myArguments; } @@ -142,7 +141,7 @@ const BOPCol_ListOfShape& BOPAlgo_Builder::Arguments()const //function : Images //purpose : //======================================================================= -const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Images()const +const TopTools_DataMapOfShapeListOfShape& BOPAlgo_Builder::Images()const { return myImages; } @@ -150,7 +149,7 @@ const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Images()const //function : Origins //purpose : //======================================================================= -const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Origins()const +const TopTools_DataMapOfShapeListOfShape& BOPAlgo_Builder::Origins()const { return myOrigins; } @@ -159,7 +158,7 @@ const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Origins()const //function : ShapesSd //purpose : //======================================================================= -const BOPCol_DataMapOfShapeShape& BOPAlgo_Builder::ShapesSD()const +const TopTools_DataMapOfShapeShape& BOPAlgo_Builder::ShapesSD()const { return myShapesSD; } @@ -167,7 +166,7 @@ const BOPCol_DataMapOfShapeShape& BOPAlgo_Builder::ShapesSD()const //function : Splits //purpose : //======================================================================= -const BOPCol_DataMapOfShapeListOfShape& BOPAlgo_Builder::Splits()const +const TopTools_DataMapOfShapeListOfShape& BOPAlgo_Builder::Splits()const { return mySplits; } @@ -447,7 +446,7 @@ void BOPAlgo_Builder::PostTreat() { Standard_Integer i, aNbS; TopAbs_ShapeEnum aType; - BOPCol_IndexedMapOfShape aMA; + TopTools_IndexedMapOfShape aMA; if (myPaveFiller->NonDestructive()) { // MapToAvoid aNbS=myDS->NbSourceShapes(); diff --git a/src/BOPAlgo/BOPAlgo_Builder.hxx b/src/BOPAlgo/BOPAlgo_Builder.hxx index b61e5f28fc..62e8f679a5 100644 --- a/src/BOPAlgo/BOPAlgo_Builder.hxx +++ b/src/BOPAlgo/BOPAlgo_Builder.hxx @@ -22,18 +22,17 @@ #include #include -#include -#include #include +#include #include #include +#include #include -#include -#include #include -#include -#include +#include +#include #include +#include #include #include class IntTools_Context; @@ -71,7 +70,7 @@ public: Standard_EXPORT BOPAlgo_Builder(); Standard_EXPORT virtual ~BOPAlgo_Builder(); - Standard_EXPORT BOPAlgo_Builder(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_Builder(const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT virtual void Clear() Standard_OVERRIDE; @@ -81,9 +80,9 @@ Standard_EXPORT virtual ~BOPAlgo_Builder(); Standard_EXPORT virtual void AddArgument (const TopoDS_Shape& theShape); - Standard_EXPORT virtual void SetArguments (const BOPCol_ListOfShape& theLS); + Standard_EXPORT virtual void SetArguments (const TopTools_ListOfShape& theLS); - Standard_EXPORT const BOPCol_ListOfShape& Arguments() const; + Standard_EXPORT const TopTools_ListOfShape& Arguments() const; Standard_EXPORT virtual void Perform() Standard_OVERRIDE; @@ -100,18 +99,18 @@ Standard_EXPORT virtual ~BOPAlgo_Builder(); //! Returns true if the shape theS has been deleted. Standard_EXPORT virtual Standard_Boolean IsDeleted (const TopoDS_Shape& theS) Standard_OVERRIDE; - Standard_EXPORT const BOPCol_DataMapOfShapeListOfShape& Images() const; + Standard_EXPORT const TopTools_DataMapOfShapeListOfShape& Images() const; Standard_EXPORT Standard_Boolean IsInterferred (const TopoDS_Shape& theS) const; //! Returns myOrigins. - Standard_EXPORT const BOPCol_DataMapOfShapeListOfShape& Origins() const; + Standard_EXPORT const TopTools_DataMapOfShapeListOfShape& Origins() const; //! Returns myShapesSD. - Standard_EXPORT const BOPCol_DataMapOfShapeShape& ShapesSD() const; + Standard_EXPORT const TopTools_DataMapOfShapeShape& ShapesSD() const; //! Returns mySplits. - Standard_EXPORT const BOPCol_DataMapOfShapeListOfShape& Splits() const; + Standard_EXPORT const TopTools_DataMapOfShapeListOfShape& Splits() const; //! Sets the flag that defines the mode of treatment. @@ -161,7 +160,7 @@ protected: Standard_EXPORT void FillImagesContainer (const TopoDS_Shape& theS, const TopAbs_ShapeEnum theType); - Standard_EXPORT void FillImagesCompound (const TopoDS_Shape& theS, BOPCol_MapOfShape& theMF); + Standard_EXPORT void FillImagesCompound (const TopoDS_Shape& theS, TopTools_MapOfShape& theMF); Standard_EXPORT void FillImagesFaces(); @@ -173,27 +172,27 @@ protected: Standard_EXPORT void FillImagesSolids(); - Standard_EXPORT void BuildDraftSolid (const TopoDS_Shape& theSolid, TopoDS_Shape& theDraftSolid, BOPCol_ListOfShape& theLIF); + Standard_EXPORT void BuildDraftSolid (const TopoDS_Shape& theSolid, TopoDS_Shape& theDraftSolid, TopTools_ListOfShape& theLIF); - Standard_EXPORT virtual void FillIn3DParts (BOPCol_DataMapOfShapeListOfShape& theInParts, BOPCol_DataMapOfShapeShape& theDraftSolids, const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT virtual void FillIn3DParts (TopTools_DataMapOfShapeListOfShape& theInParts, TopTools_DataMapOfShapeShape& theDraftSolids, const Handle(NCollection_BaseAllocator)& theAllocator); - Standard_EXPORT void BuildSplitSolids (BOPCol_DataMapOfShapeListOfShape& theInParts, BOPCol_DataMapOfShapeShape& theDraftSolids, const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT void BuildSplitSolids (TopTools_DataMapOfShapeListOfShape& theInParts, TopTools_DataMapOfShapeShape& theDraftSolids, const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT void FillInternalShapes(); Standard_EXPORT virtual void PostTreat(); - BOPCol_ListOfShape myArguments; - BOPCol_MapOfShape myMapFence; + TopTools_ListOfShape myArguments; + TopTools_MapOfShape myMapFence; BOPAlgo_PPaveFiller myPaveFiller; BOPDS_PDS myDS; Handle(IntTools_Context) myContext; Standard_Integer myEntryPoint; - BOPCol_DataMapOfShapeListOfShape myImages; - BOPCol_DataMapOfShapeShape myShapesSD; - BOPCol_DataMapOfShapeListOfShape mySplits; - BOPCol_DataMapOfShapeListOfShape myOrigins; + TopTools_DataMapOfShapeListOfShape myImages; + TopTools_DataMapOfShapeShape myShapesSD; + TopTools_DataMapOfShapeListOfShape mySplits; + TopTools_DataMapOfShapeListOfShape myOrigins; Standard_Boolean myNonDestructive; BOPAlgo_GlueEnum myGlue; diff --git a/src/BOPAlgo/BOPAlgo_BuilderArea.hxx b/src/BOPAlgo/BOPAlgo_BuilderArea.hxx index fc134be63c..37851d33d7 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderArea.hxx +++ b/src/BOPAlgo/BOPAlgo_BuilderArea.hxx @@ -22,10 +22,10 @@ #include #include -#include -#include #include -#include +#include +#include +#include class IntTools_Context; @@ -43,22 +43,22 @@ public: } //! Returns the input shapes - Standard_EXPORT const BOPCol_ListOfShape& Shapes() const { + Standard_EXPORT const TopTools_ListOfShape& Shapes() const { return myShapes; } //! Sets the shapes for building areas - Standard_EXPORT void SetShapes(const BOPCol_ListOfShape& theLS) { + Standard_EXPORT void SetShapes(const TopTools_ListOfShape& theLS) { myShapes = theLS; } //! Returns the found loops - Standard_EXPORT const BOPCol_ListOfShape& Loops() const { + Standard_EXPORT const TopTools_ListOfShape& Loops() const { return myLoops; } //! Returns the found areas - Standard_EXPORT const BOPCol_ListOfShape& Areas() const { + Standard_EXPORT const TopTools_ListOfShape& Areas() const { return myAreas; } @@ -78,7 +78,7 @@ protected: Standard_EXPORT BOPAlgo_BuilderArea(); Standard_EXPORT virtual ~BOPAlgo_BuilderArea(); - Standard_EXPORT BOPAlgo_BuilderArea(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_BuilderArea(const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT virtual void PerformShapesToAvoid() = 0; @@ -90,11 +90,11 @@ protected: Handle(IntTools_Context) myContext; - BOPCol_ListOfShape myShapes; - BOPCol_ListOfShape myLoops; - BOPCol_ListOfShape myLoopsInternal; - BOPCol_ListOfShape myAreas; - BOPCol_IndexedMapOfOrientedShape myShapesToAvoid; + TopTools_ListOfShape myShapes; + TopTools_ListOfShape myLoops; + TopTools_ListOfShape myLoopsInternal; + TopTools_ListOfShape myAreas; + TopTools_IndexedMapOfOrientedShape myShapesToAvoid; Standard_Boolean myAvoidInternalShapes; private: diff --git a/src/BOPAlgo/BOPAlgo_BuilderFace.cxx b/src/BOPAlgo/BOPAlgo_BuilderFace.cxx index 7dfd5c54af..9d4007a0eb 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderFace.cxx +++ b/src/BOPAlgo/BOPAlgo_BuilderFace.cxx @@ -17,21 +17,14 @@ // commercial license or contractual agreement. #include +#include #include #include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include #include +#include #include #include #include @@ -58,19 +51,23 @@ #include #include #include - +#include +#include +#include +#include +#include // static Standard_Boolean IsGrowthWire(const TopoDS_Shape& , - const BOPCol_IndexedMapOfShape& ); + const TopTools_IndexedMapOfShape& ); static Standard_Boolean IsInside(const TopoDS_Shape& , const TopoDS_Shape& , Handle(IntTools_Context)& ); static - void MakeInternalWires(const BOPCol_IndexedMapOfShape& , - BOPCol_ListOfShape& ); + void MakeInternalWires(const TopTools_IndexedMapOfShape& , + TopTools_ListOfShape& ); //======================================================================= //function : @@ -189,8 +186,8 @@ void BOPAlgo_BuilderFace::PerformShapesToAvoid() { Standard_Boolean bFound; Standard_Integer i, iCnt, aNbV, aNbE; - BOPCol_IndexedDataMapOfShapeListOfShape aMVE; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_IndexedDataMapOfShapeListOfShape aMVE; + TopTools_ListIteratorOfListOfShape aIt; // myShapesToAvoid.Clear(); // @@ -205,7 +202,7 @@ void BOPAlgo_BuilderFace::PerformShapesToAvoid() for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aE=aIt.Value(); if (!myShapesToAvoid.Contains(aE)) { - BOPTools::MapShapesAndAncestors(aE, TopAbs_VERTEX, TopAbs_EDGE, aMVE); + TopExp::MapShapesAndAncestors(aE, TopAbs_VERTEX, TopAbs_EDGE, aMVE); } } aNbV=aMVE.Extent(); @@ -214,7 +211,7 @@ void BOPAlgo_BuilderFace::PerformShapesToAvoid() for (i=1; i<=aNbV; ++i) { const TopoDS_Vertex& aV=(*(TopoDS_Vertex *)(&aMVE.FindKey(i))); // - BOPCol_ListOfShape& aLE=aMVE.ChangeFromKey(aV); + TopTools_ListOfShape& aLE=aMVE.ChangeFromKey(aV); aNbE=aLE.Extent(); if (!aNbE) { continue; @@ -262,9 +259,9 @@ void BOPAlgo_BuilderFace::PerformLoops() { Standard_Boolean bFlag; Standard_Integer i, aNbEA; - BOPCol_ListIteratorOfListOfShape aIt; - BOPCol_IndexedDataMapOfShapeListOfShape aVEMap; - BOPCol_MapOfOrientedShape aMAdded; + TopTools_ListIteratorOfListOfShape aIt; + TopTools_IndexedDataMapOfShapeListOfShape aVEMap; + TopTools_MapOfOrientedShape aMAdded; TopoDS_Iterator aItW; BRep_Builder aBB; BOPAlgo_WireEdgeSet aWES(myAllocator); @@ -290,14 +287,14 @@ void BOPAlgo_BuilderFace::PerformLoops() return; } // - const BOPCol_ListOfShape& aLW=aWES.Shapes(); + const TopTools_ListOfShape& aLW=aWES.Shapes(); aIt.Initialize (aLW); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aW=aIt.Value(); myLoops.Append(aW); } // Post Treatment - BOPCol_MapOfOrientedShape aMEP; + TopTools_MapOfOrientedShape aMEP; // // a. collect all edges that are in loops aIt.Initialize (myLoops); @@ -332,7 +329,7 @@ void BOPAlgo_BuilderFace::PerformLoops() aNbEA = myShapesToAvoid.Extent(); for (i = 1; i <= aNbEA; ++i) { const TopoDS_Shape& aEE = myShapesToAvoid(i); - BOPTools::MapShapesAndAncestors(aEE, + TopExp::MapShapesAndAncestors(aEE, TopAbs_VERTEX, TopAbs_EDGE, aVEMap); @@ -357,7 +354,7 @@ void BOPAlgo_BuilderFace::PerformLoops() TopoDS_Iterator aItE(aE); for (; aItE.More()&&bFlag; aItE.Next()) { const TopoDS_Vertex& aV = (*(TopoDS_Vertex *)(&aItE.Value())); - const BOPCol_ListOfShape& aLE=aVEMap.FindFromKey(aV); + const TopTools_ListOfShape& aLE=aVEMap.FindFromKey(aV); aIt.Initialize(aLE); for (; aIt.More()&&bFlag; aIt.Next()) { const TopoDS_Shape& aEx=aIt.Value(); @@ -404,16 +401,16 @@ void BOPAlgo_BuilderFace::PerformAreas() } // The new faces - BOPCol_ListOfShape aNewFaces; + TopTools_ListOfShape aNewFaces; // The hole faces which has to be classified relatively new faces - BOPCol_IndexedMapOfShape aHoleFaces; + TopTools_IndexedMapOfShape aHoleFaces; // Map of the edges of the hole faces for quick check of the growths. // If the analyzed wire contains any of the edges from the hole faces // it is considered as growth. - BOPCol_IndexedMapOfShape aMHE; + TopTools_IndexedMapOfShape aMHE; // Analyze the new wires - classify them to be the holes and growths - BOPCol_ListIteratorOfListOfShape aItLL(myLoops); + TopTools_ListIteratorOfListOfShape aItLL(myLoops); for (; aItLL.More(); aItLL.Next()) { const TopoDS_Shape& aWire = aItLL.Value(); @@ -438,7 +435,7 @@ void BOPAlgo_BuilderFace::PerformAreas() else { aHoleFaces.Add(aFace); - BOPTools::MapShapes(aWire, TopAbs_EDGE, aMHE); + TopExp::MapShapes(aWire, TopAbs_EDGE, aMHE); } } @@ -451,7 +448,7 @@ void BOPAlgo_BuilderFace::PerformAreas() // Classify holes relatively faces // Prepare tree filler with the boxes of the hole faces - BOPCol_Box2DBndTree aBBTree; + NCollection_UBTree aBBTree; NCollection_UBTreeFiller aTreeFiller(aBBTree); Standard_Integer i, aNbH = aHoleFaces.Extent(); @@ -468,9 +465,12 @@ void BOPAlgo_BuilderFace::PerformAreas() aTreeFiller.Fill(); // Find outer growth face that is most close to each hole face - BOPCol_IndexedDataMapOfShapeShape aHoleFaceMap; + TopTools_IndexedDataMapOfShapeShape aHoleFaceMap; - BOPCol_ListIteratorOfListOfShape aItLS(aNewFaces); + // Selector + BOPTools_BoxSelector aSelector; + + TopTools_ListIteratorOfListOfShape aItLS(aNewFaces); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Face& aFace = TopoDS::Face(aItLS.Value()); @@ -479,12 +479,12 @@ void BOPAlgo_BuilderFace::PerformAreas() Bnd_Box2d aBox; BRepTools::AddUVBounds(aFace, aBox); - BOPCol_Box2DBndTreeSelector aSelector; + aSelector.Clear(); aSelector.SetBox(aBox); aBBTree.Select(aSelector); - const BOPCol_ListOfInteger& aLI = aSelector.Indices(); - BOPCol_ListIteratorOfListOfInteger aItLI(aLI); + const TColStd_ListOfInteger& aLI = aSelector.Indices(); + TColStd_ListIteratorOfListOfInteger aItLI(aLI); for (; aItLI.More(); aItLI.Next()) { Standard_Integer k = aItLI.Value(); @@ -510,7 +510,7 @@ void BOPAlgo_BuilderFace::PerformAreas() } // Make the back map from faces to holes - BOPCol_IndexedDataMapOfShapeListOfShape aFaceHolesMap; + TopTools_IndexedDataMapOfShapeListOfShape aFaceHolesMap; aNbH = aHoleFaceMap.Extent(); for (i = 1; i <= aNbH; ++i) @@ -518,9 +518,9 @@ void BOPAlgo_BuilderFace::PerformAreas() const TopoDS_Shape& aHole = aHoleFaceMap.FindKey(i); const TopoDS_Shape& aFace = aHoleFaceMap(i); // - BOPCol_ListOfShape* pLHoles = aFaceHolesMap.ChangeSeek(aFace); + TopTools_ListOfShape* pLHoles = aFaceHolesMap.ChangeSeek(aFace); if (!pLHoles) - pLHoles = &aFaceHolesMap(aFaceHolesMap.Add(aFace, BOPCol_ListOfShape())); + pLHoles = &aFaceHolesMap(aFaceHolesMap.Add(aFace, TopTools_ListOfShape())); pLHoles->Append(aHole); } @@ -535,7 +535,7 @@ void BOPAlgo_BuilderFace::PerformAreas() { TopoDS_Face aFace; aBB.MakeFace(aFace, aS, aLoc, aTol); - BOPCol_ListOfShape& anUnUsedHoles = aFaceHolesMap(aFaceHolesMap.Add(aFace, BOPCol_ListOfShape())); + TopTools_ListOfShape& anUnUsedHoles = aFaceHolesMap(aFaceHolesMap.Add(aFace, TopTools_ListOfShape())); aNbH = aHoleFaces.Extent(); for (i = 1; i <= aNbH; ++i) { @@ -553,11 +553,11 @@ void BOPAlgo_BuilderFace::PerformAreas() for ( ; aItLS.More(); aItLS.Next()) { TopoDS_Face& aFace = *(TopoDS_Face*)&aItLS.Value(); - const BOPCol_ListOfShape* pLHoles = aFaceHolesMap.Seek(aFace); + const TopTools_ListOfShape* pLHoles = aFaceHolesMap.Seek(aFace); if (pLHoles) { // update faces with the holes - BOPCol_ListIteratorOfListOfShape aItLH(*pLHoles); + TopTools_ListIteratorOfListOfShape aItLH(*pLHoles); for (; aItLH.More(); aItLH.Next()) { const TopoDS_Shape& aFHole = aItLH.Value(); @@ -592,11 +592,11 @@ void BOPAlgo_BuilderFace::PerformInternalShapes() //Standard_Real aTol; Standard_Integer i; BRep_Builder aBB; - BOPCol_ListIteratorOfListOfShape aIt1, aIt2; + TopTools_ListIteratorOfListOfShape aIt1, aIt2; TopoDS_Iterator aIt; - BOPCol_IndexedMapOfShape aME1, aME2, aMEP; - BOPCol_IndexedDataMapOfShapeListOfShape aMVE; - BOPCol_ListOfShape aLSI; + TopTools_IndexedMapOfShape aME1, aME2, aMEP; + TopTools_IndexedDataMapOfShapeListOfShape aMVE; + TopTools_ListOfShape aLSI; // // 1. All internal edges aIt1.Initialize(myLoopsInternal); @@ -615,7 +615,7 @@ void BOPAlgo_BuilderFace::PerformInternalShapes() TopoDS_Face& aF=(*(TopoDS_Face *)(&aIt2.Value())); // aMVE.Clear(); - BOPTools::MapShapesAndAncestors(aF, TopAbs_VERTEX, TopAbs_EDGE, aMVE); + TopExp::MapShapesAndAncestors(aF, TopAbs_VERTEX, TopAbs_EDGE, aMVE); // // 2.1 Separate faces to process aMEP aME2.Clear(); @@ -655,19 +655,19 @@ void BOPAlgo_BuilderFace::PerformInternalShapes() //function : MakeInternalWires //purpose : //======================================================================= -void MakeInternalWires(const BOPCol_IndexedMapOfShape& theME, - BOPCol_ListOfShape& theWires) +void MakeInternalWires(const TopTools_IndexedMapOfShape& theME, + TopTools_ListOfShape& theWires) { Standard_Integer i, aNbE; - BOPCol_MapOfShape aAddedMap; - BOPCol_ListIteratorOfListOfShape aItE; - BOPCol_IndexedDataMapOfShapeListOfShape aMVE; + TopTools_MapOfShape aAddedMap; + TopTools_ListIteratorOfListOfShape aItE; + TopTools_IndexedDataMapOfShapeListOfShape aMVE; BRep_Builder aBB; // aNbE = theME.Extent(); for (i = 1; i <= aNbE; ++i) { const TopoDS_Shape& aE = theME(i); - BOPTools::MapShapesAndAncestors(aE, TopAbs_VERTEX, TopAbs_EDGE, aMVE); + TopExp::MapShapesAndAncestors(aE, TopAbs_VERTEX, TopAbs_EDGE, aMVE); } // for (i = 1; i <= aNbE; ++i) { @@ -689,7 +689,7 @@ void MakeInternalWires(const BOPCol_IndexedMapOfShape& theME, TopExp_Explorer aExp(aE, TopAbs_VERTEX); for (; aExp.More(); aExp.Next()) { const TopoDS_Shape& aV =aExp.Current(); - const BOPCol_ListOfShape& aLE=aMVE.FindFromKey(aV); + const TopTools_ListOfShape& aLE=aMVE.FindFromKey(aV); aItE.Initialize(aLE); for (; aItE.More(); aItE.Next()) { TopoDS_Shape aEL=aItE.Value(); @@ -717,14 +717,14 @@ Standard_Boolean IsInside(const TopoDS_Shape& theHole, TopAbs_State aState; TopExp_Explorer aExp; - BOPCol_IndexedMapOfShape aME2; + TopTools_IndexedMapOfShape aME2; gp_Pnt2d aP2D; // bRet=Standard_False; aState=TopAbs_UNKNOWN; const TopoDS_Face& aF2=(*(TopoDS_Face *)(&theF2)); // - BOPTools::MapShapes(aF2, TopAbs_EDGE, aME2);//AA + TopExp::MapShapes(aF2, TopAbs_EDGE, aME2);//AA // aExp.Init(theHole, TopAbs_EDGE); if (aExp.More()) { @@ -752,7 +752,7 @@ Standard_Boolean IsInside(const TopoDS_Shape& theHole, //purpose : //======================================================================= Standard_Boolean IsGrowthWire(const TopoDS_Shape& theWire, - const BOPCol_IndexedMapOfShape& theMHE) + const TopTools_IndexedMapOfShape& theMHE) { if (theMHE.Extent()) { diff --git a/src/BOPAlgo/BOPAlgo_BuilderFace.hxx b/src/BOPAlgo/BOPAlgo_BuilderFace.hxx index 3f32e32bdd..4ded4e6cc3 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderFace.hxx +++ b/src/BOPAlgo/BOPAlgo_BuilderFace.hxx @@ -25,7 +25,7 @@ #include #include #include -#include +#include class TopoDS_Face; @@ -45,7 +45,7 @@ public: Standard_EXPORT BOPAlgo_BuilderFace(); Standard_EXPORT virtual ~BOPAlgo_BuilderFace(); - Standard_EXPORT BOPAlgo_BuilderFace(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_BuilderFace(const Handle(NCollection_BaseAllocator)& theAllocator); //! Sets the face generatix Standard_EXPORT void SetFace (const TopoDS_Face& theFace); diff --git a/src/BOPAlgo/BOPAlgo_BuilderShape.cxx b/src/BOPAlgo/BOPAlgo_BuilderShape.cxx index b14d3987e8..ebeb2c916a 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderShape.cxx +++ b/src/BOPAlgo/BOPAlgo_BuilderShape.cxx @@ -132,7 +132,7 @@ //function : ImagesResult //purpose : //======================================================================= - const BOPCol_IndexedDataMapOfShapeListOfShape& + const TopTools_IndexedDataMapOfShapeListOfShape& BOPAlgo_BuilderShape::ImagesResult()const { return myImagesResult; diff --git a/src/BOPAlgo/BOPAlgo_BuilderShape.hxx b/src/BOPAlgo/BOPAlgo_BuilderShape.hxx index aa199ef0ce..10acdef960 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderShape.hxx +++ b/src/BOPAlgo/BOPAlgo_BuilderShape.hxx @@ -21,14 +21,14 @@ #include #include #include +#include +#include +#include #include #include -#include -#include -#include -#include -#include +#include +#include class TopoDS_Shape; @@ -69,7 +69,7 @@ public: //! of arguments has modified shapes. Standard_EXPORT Standard_Boolean HasModified() const; - Standard_EXPORT const BOPCol_IndexedDataMapOfShapeListOfShape& ImagesResult() const; + Standard_EXPORT const TopTools_IndexedDataMapOfShapeListOfShape& ImagesResult() const; @@ -80,7 +80,7 @@ protected: Standard_EXPORT BOPAlgo_BuilderShape(); Standard_EXPORT virtual ~BOPAlgo_BuilderShape(); - Standard_EXPORT BOPAlgo_BuilderShape(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_BuilderShape(const Handle(NCollection_BaseAllocator)& theAllocator); //! Prepare information for history support Standard_EXPORT virtual void PrepareHistory(); @@ -88,26 +88,15 @@ Standard_EXPORT virtual ~BOPAlgo_BuilderShape(); TopoDS_Shape myShape; TopTools_ListOfShape myHistShapes; - BOPCol_MapOfShape myMapShape; + TopTools_MapOfShape myMapShape; Standard_Boolean myHasDeleted; Standard_Boolean myHasGenerated; Standard_Boolean myHasModified; - BOPCol_IndexedDataMapOfShapeListOfShape myImagesResult; + TopTools_IndexedDataMapOfShapeListOfShape myImagesResult; Standard_Boolean myFlagHistory; - private: - - - - }; - - - - - - #endif // _BOPAlgo_BuilderShape_HeaderFile diff --git a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx index c56c6b9647..d9e6241267 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx +++ b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx @@ -19,21 +19,11 @@ #include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include #include +#include #include +#include #include #include #include @@ -50,6 +40,7 @@ #include #include #include +#include #include #include #include @@ -63,11 +54,17 @@ #include #include #include +#include +#include +#include +#include +#include +#include // static Standard_Boolean IsGrowthShell(const TopoDS_Shape& , - const BOPCol_IndexedMapOfShape& ); + const TopTools_IndexedMapOfShape& ); static Standard_Boolean IsHole(const TopoDS_Shape& , Handle(IntTools_Context)& ); @@ -76,8 +73,8 @@ static const TopoDS_Shape& , Handle(IntTools_Context)& ); static - void MakeInternalShells(const BOPCol_IndexedMapOfShape& , - BOPCol_ListOfShape& ); + void MakeInternalShells(const TopTools_IndexedMapOfShape& , + TopTools_ListOfShape& ); //======================================================================= //function : @@ -140,7 +137,7 @@ void BOPAlgo_BuilderSolid::Perform() TopoDS_Compound aC; BRep_Builder aBB; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aBB.MakeCompound(aC); aIt.Initialize(myShapes); @@ -186,8 +183,8 @@ void BOPAlgo_BuilderSolid::PerformShapesToAvoid() Standard_Boolean bFound; Standard_Integer i, iCnt, aNbE, aNbF; TopAbs_Orientation aOrE; - BOPCol_IndexedDataMapOfShapeListOfShape aMEF; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_IndexedDataMapOfShapeListOfShape aMEF; + TopTools_ListIteratorOfListOfShape aIt; // myShapesToAvoid.Clear(); // @@ -202,7 +199,7 @@ void BOPAlgo_BuilderSolid::PerformShapesToAvoid() for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aF=aIt.Value(); if (!myShapesToAvoid.Contains(aF)) { - BOPTools::MapShapesAndAncestors(aF, + TopExp::MapShapesAndAncestors(aF, TopAbs_EDGE, TopAbs_FACE, aMEF); @@ -217,7 +214,7 @@ void BOPAlgo_BuilderSolid::PerformShapesToAvoid() continue; } // - BOPCol_ListOfShape& aLF=aMEF.ChangeFromKey(aE); + TopTools_ListOfShape& aLF=aMEF.ChangeFromKey(aE); aNbF=aLF.Extent(); if (!aNbF) { continue; @@ -264,7 +261,7 @@ void BOPAlgo_BuilderSolid::PerformShapesToAvoid() void BOPAlgo_BuilderSolid::PerformLoops() { Standard_Integer i, aNbSh; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; TopoDS_Iterator aItS; Handle(NCollection_BaseAllocator) aAlr; // @@ -300,7 +297,7 @@ void BOPAlgo_BuilderSolid::PerformLoops() { TopoDS_Compound aFacesSp; BRep_Builder().MakeCompound(aFacesSp); - BOPCol_ListIteratorOfListOfShape aItLF(aSSp.StartElements()); + TopTools_ListIteratorOfListOfShape aItLF(aSSp.StartElements()); for (; aItLF.More(); aItLF.Next()) { BRep_Builder().Add(aFacesSp, aItLF.Value()); } @@ -309,7 +306,7 @@ void BOPAlgo_BuilderSolid::PerformLoops() return; } // - const BOPCol_ListOfShape& aLSh=aSSp.Shells(); + const TopTools_ListOfShape& aLSh=aSSp.Shells(); aIt.Initialize (aLSh); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSh=aIt.Value(); @@ -319,9 +316,9 @@ void BOPAlgo_BuilderSolid::PerformLoops() // // 2. Post Treatment BRep_Builder aBB; - BOPCol_MapOfOrientedShape AddedFacesMap; - BOPCol_IndexedDataMapOfShapeListOfShape aEFMap; - BOPCol_MapOfOrientedShape aMP; + TopTools_MapOfOrientedShape AddedFacesMap; + TopTools_IndexedDataMapOfShapeListOfShape aEFMap; + TopTools_MapOfOrientedShape aMP; // // a. collect all edges that are in loops aIt.Initialize (myLoops); @@ -362,7 +359,7 @@ void BOPAlgo_BuilderSolid::PerformLoops() aNbSh = myShapesToAvoid.Extent(); for (i = 1; i <= aNbSh; ++i) { const TopoDS_Shape& aFF = myShapesToAvoid(i); - BOPTools::MapShapesAndAncestors(aFF, + TopExp::MapShapesAndAncestors(aFF, TopAbs_EDGE, TopAbs_FACE, aEFMap); } @@ -386,7 +383,7 @@ void BOPAlgo_BuilderSolid::PerformLoops() aExp.Init(aF, TopAbs_EDGE); for (; aExp.More(); aExp.Next()) { const TopoDS_Edge& aE = (*(TopoDS_Edge*)(&aExp.Current())); - const BOPCol_ListOfShape& aLF=aEFMap.FindFromKey(aE); + const TopTools_ListOfShape& aLF=aEFMap.FindFromKey(aE); aIt.Initialize(aLF); for (; aIt.More(); aIt.Next()) { const TopoDS_Face& aFL=(*(TopoDS_Face*)(&aIt.Value())); @@ -409,15 +406,15 @@ void BOPAlgo_BuilderSolid::PerformAreas() myAreas.Clear(); BRep_Builder aBB; // The new solids - BOPCol_ListOfShape aNewSolids; + TopTools_ListOfShape aNewSolids; // The hole shells which has to be classified relatively new solids - BOPCol_IndexedMapOfShape aHoleShells; + TopTools_IndexedMapOfShape aHoleShells; // Map of the faces of the hole shells for quick check of the growths. // If the analyzed shell contains any of the hole faces, it is considered as growth. - BOPCol_IndexedMapOfShape aMHF; + TopTools_IndexedMapOfShape aMHF; // Analyze the shells - BOPCol_ListIteratorOfListOfShape aItLL(myLoops); + TopTools_ListIteratorOfListOfShape aItLL(myLoops); for (; aItLL.More(); aItLL.Next()) { const TopoDS_Shape& aShell = aItLL.Value(); @@ -440,14 +437,14 @@ void BOPAlgo_BuilderSolid::PerformAreas() else { aHoleShells.Add(aShell); - BOPTools::MapShapes(aShell, TopAbs_FACE, aMHF); + TopExp::MapShapes(aShell, TopAbs_FACE, aMHF); } } if (aHoleShells.IsEmpty()) { // No holes, stop the analysis - BOPCol_ListIteratorOfListOfShape aItLS(aNewSolids); + TopTools_ListIteratorOfListOfShape aItLS(aNewSolids); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aSol = aItLS.Value(); @@ -463,7 +460,7 @@ void BOPAlgo_BuilderSolid::PerformAreas() // Classify holes relatively solids // Prepare tree filler with the boxes of the hole shells - BOPCol_BoxBndTree aBBTree; + BOPTools_BoxBndTree aBBTree; NCollection_UBTreeFiller aTreeFiller(aBBTree); Standard_Integer i, aNbH = aHoleShells.Extent(); @@ -482,9 +479,9 @@ void BOPAlgo_BuilderSolid::PerformAreas() aTreeFiller.Fill(); // Find outer growth shell that is most close to each hole shell - BOPCol_IndexedDataMapOfShapeShape aHoleSolidMap; + TopTools_IndexedDataMapOfShapeShape aHoleSolidMap; - BOPCol_ListIteratorOfListOfShape aItLS(aNewSolids); + TopTools_ListIteratorOfListOfShape aItLS(aNewSolids); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aSolid = aItLS.Value(); @@ -495,12 +492,12 @@ void BOPAlgo_BuilderSolid::PerformAreas() myBoxes.Bind(aSolid, aBox); - BOPCol_BoxBndTreeSelector aSelector; + BOPTools_BoxBndTreeSelector aSelector; aSelector.SetBox(aBox); aBBTree.Select(aSelector); - const BOPCol_ListOfInteger& aLI = aSelector.Indices(); - BOPCol_ListIteratorOfListOfInteger aItLI(aLI); + const TColStd_ListOfInteger& aLI = aSelector.Indices(); + TColStd_ListIteratorOfListOfInteger aItLI(aLI); for (; aItLI.More(); aItLI.Next()) { Standard_Integer k = aItLI.Value(); @@ -526,7 +523,7 @@ void BOPAlgo_BuilderSolid::PerformAreas() } // Make the back map from solids to holes - BOPCol_IndexedDataMapOfShapeListOfShape aSolidHolesMap; + TopTools_IndexedDataMapOfShapeListOfShape aSolidHolesMap; aNbH = aHoleSolidMap.Extent(); for (i = 1; i <= aNbH; ++i) @@ -534,9 +531,9 @@ void BOPAlgo_BuilderSolid::PerformAreas() const TopoDS_Shape& aHole = aHoleSolidMap.FindKey(i); const TopoDS_Shape& aSolid = aHoleSolidMap(i); // - BOPCol_ListOfShape* pLHoles = aSolidHolesMap.ChangeSeek(aSolid); + TopTools_ListOfShape* pLHoles = aSolidHolesMap.ChangeSeek(aSolid); if (!pLHoles) - pLHoles = &aSolidHolesMap(aSolidHolesMap.Add(aSolid, BOPCol_ListOfShape())); + pLHoles = &aSolidHolesMap(aSolidHolesMap.Add(aSolid, TopTools_ListOfShape())); pLHoles->Append(aHole); } @@ -545,11 +542,11 @@ void BOPAlgo_BuilderSolid::PerformAreas() for ( ; aItLS.More(); aItLS.Next()) { TopoDS_Solid& aSolid = *(TopoDS_Solid*)&aItLS.Value(); - const BOPCol_ListOfShape* pLHoles = aSolidHolesMap.Seek(aSolid); + const TopTools_ListOfShape* pLHoles = aSolidHolesMap.Seek(aSolid); if (pLHoles) { // update solid - BOPCol_ListIteratorOfListOfShape aItLH(*pLHoles); + TopTools_ListIteratorOfListOfShape aItLH(*pLHoles); for (; aItLH.More(); aItLH.Next()) { const TopoDS_Shape& aHole = aItLH.Value(); @@ -599,8 +596,8 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() return; // Get all faces to classify - BOPCol_IndexedMapOfShape aMFs; - BOPCol_ListIteratorOfListOfShape aItLS(myLoopsInternal); + TopTools_IndexedMapOfShape aMFs; + TopTools_ListIteratorOfListOfShape aItLS(myLoopsInternal); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aShell = aItLS.Value(); @@ -618,7 +615,7 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() TopoDS_Solid aSolid; aBB.MakeSolid(aSolid); // - BOPCol_ListOfShape aLSI; + TopTools_ListOfShape aLSI; MakeInternalShells(aMFs, aLSI); // aItLS.Initialize(aLSI); @@ -632,20 +629,20 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() // Classify faces relatively solids // Prepare list of faces to classify - BOPCol_ListOfShape aLFaces; + TopTools_ListOfShape aLFaces; Standard_Integer i, aNbF = aMFs.Extent(); for (i = 1; i <= aNbF; ++i) aLFaces.Append(aMFs(i)); // Map of solids with IN faces - BOPCol_IndexedDataMapOfShapeListOfShape aMSLF; + TopTools_IndexedDataMapOfShapeListOfShape aMSLF; // Perform classification BOPAlgo_Tools::ClassifyFaces(aLFaces, myAreas, myRunParallel, myContext, aMSLF, myBoxes); // Update Solids by internal Faces - BOPCol_MapOfShape aMFDone; + TopTools_MapOfShape aMFDone; Standard_Integer aNbS = aMSLF.Extent(); for (i = 1; i <= aNbS; ++i) @@ -653,11 +650,11 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() const TopoDS_Shape& aSolid = aMSLF.FindKey(i); TopoDS_Shape *pSolid = (TopoDS_Shape*)&aSolid; - const BOPCol_ListOfShape& aLF = aMSLF(i); + const TopTools_ListOfShape& aLF = aMSLF(i); if (aLF.IsEmpty()) continue; - BOPCol_IndexedMapOfShape aMF; + TopTools_IndexedMapOfShape aMF; aItLS.Initialize(aLF); for (; aItLS.More(); aItLS.Next()) { @@ -666,7 +663,7 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() aMFDone.Add(aF); } // - BOPCol_ListOfShape aLSI; + TopTools_ListOfShape aLSI; MakeInternalShells(aMF, aLSI); // aItLS.Initialize(aLSI); @@ -678,7 +675,7 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() } // Make solid from the unused faces (if any) - BOPCol_IndexedMapOfShape aMFUnUsed; + TopTools_IndexedMapOfShape aMFUnUsed; for (i = 1; i <= aNbF; ++i) { const TopoDS_Shape& aF = aMFs(i); @@ -691,7 +688,7 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() TopoDS_Solid aSolid; aBB.MakeSolid(aSolid); // - BOPCol_ListOfShape aLSI; + TopTools_ListOfShape aLSI; MakeInternalShells(aMFUnUsed, aLSI); // aItLS.Initialize(aLSI); @@ -711,19 +708,19 @@ void BOPAlgo_BuilderSolid::PerformInternalShapes() //function : MakeInternalShells //purpose : //======================================================================= -void MakeInternalShells(const BOPCol_IndexedMapOfShape& theMF, - BOPCol_ListOfShape& theShells) +void MakeInternalShells(const TopTools_IndexedMapOfShape& theMF, + TopTools_ListOfShape& theShells) { Standard_Integer i, aNbF; BRep_Builder aBB; - BOPCol_ListIteratorOfListOfShape aItF; - BOPCol_IndexedDataMapOfShapeListOfShape aMEF; - BOPCol_MapOfShape aAddedFacesMap; + TopTools_ListIteratorOfListOfShape aItF; + TopTools_IndexedDataMapOfShapeListOfShape aMEF; + TopTools_MapOfShape aAddedFacesMap; // aNbF = theMF.Extent(); for (i = 1; i <= aNbF; ++i) { TopoDS_Shape aF = theMF(i); - BOPTools::MapShapesAndAncestors(aF, + TopExp::MapShapesAndAncestors(aF, TopAbs_EDGE, TopAbs_FACE, aMEF); } @@ -747,7 +744,7 @@ void MakeInternalShells(const BOPCol_IndexedMapOfShape& theMF, TopExp_Explorer aEdgeExp(aF, TopAbs_EDGE); for (; aEdgeExp.More(); aEdgeExp.Next()) { const TopoDS_Shape& aE =aEdgeExp.Current(); - const BOPCol_ListOfShape& aLF=aMEF.FindFromKey(aE); + const TopTools_ListOfShape& aLF=aMEF.FindFromKey(aE); aItF.Initialize(aLF); for (; aItF.More(); aItF.Next()) { TopoDS_Shape aFL=aItF.Value(); @@ -796,8 +793,8 @@ Standard_Boolean IsInside(const TopoDS_Shape& theS1, aState=aClsf.State(); } else { - BOPCol_IndexedMapOfShape aBounds; - BOPTools::MapShapes(*pS2, TopAbs_EDGE, aBounds); + TopTools_IndexedMapOfShape aBounds; + TopExp::MapShapes(*pS2, TopAbs_EDGE, aBounds); const TopoDS_Face& aF = (*(TopoDS_Face*)(&aExp.Current())); aState=BOPTools_AlgoTools::ComputeState(aF, *pS2, Precision::Confusion(), @@ -810,7 +807,7 @@ Standard_Boolean IsInside(const TopoDS_Shape& theS1, //purpose : //======================================================================= Standard_Boolean IsGrowthShell(const TopoDS_Shape& theShell, - const BOPCol_IndexedMapOfShape& theMHF) + const TopTools_IndexedMapOfShape& theMHF) { if (theMHF.Extent()) { diff --git a/src/BOPAlgo/BOPAlgo_BuilderSolid.hxx b/src/BOPAlgo/BOPAlgo_BuilderSolid.hxx index 3bb4f440bb..b665e3ecf0 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderSolid.hxx +++ b/src/BOPAlgo/BOPAlgo_BuilderSolid.hxx @@ -24,8 +24,8 @@ #include #include -#include -#include +#include +#include class TopoDS_Solid; @@ -40,7 +40,7 @@ public: Standard_EXPORT BOPAlgo_BuilderSolid(); Standard_EXPORT virtual ~BOPAlgo_BuilderSolid(); - Standard_EXPORT BOPAlgo_BuilderSolid(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_BuilderSolid(const Handle(NCollection_BaseAllocator)& theAllocator); //! Sets the source solid Standard_EXPORT void SetSolid (const TopoDS_Solid& theSolid); @@ -52,7 +52,7 @@ Standard_EXPORT virtual ~BOPAlgo_BuilderSolid(); Standard_EXPORT virtual void Perform() Standard_OVERRIDE; //! Returns the map of solid/box pairs - const BOPCol_DataMapOfShapeBox& GetBoxesMap() const + const TopTools_DataMapOfShapeBox& GetBoxesMap() const { return myBoxes; } @@ -83,7 +83,7 @@ protected: private: - BOPCol_DataMapOfShapeBox myBoxes; // Boxes of the produced solids + TopTools_DataMapOfShapeBox myBoxes; // Boxes of the produced solids }; diff --git a/src/BOPAlgo/BOPAlgo_Builder_1.cxx b/src/BOPAlgo/BOPAlgo_Builder_1.cxx index f18fd3bcdb..15eb1893dd 100644 --- a/src/BOPAlgo/BOPAlgo_Builder_1.cxx +++ b/src/BOPAlgo/BOPAlgo_Builder_1.cxx @@ -18,9 +18,6 @@ #include #include -#include -#include -#include #include #include #include @@ -31,8 +28,11 @@ #include #include #include +#include #include #include +#include +#include //======================================================================= //function : FillImagesVertices @@ -41,9 +41,9 @@ void BOPAlgo_Builder::FillImagesVertices() { Standard_Integer nV, nVSD; - BOPCol_DataMapIteratorOfDataMapOfIntegerInteger aIt; + TColStd_DataMapIteratorOfDataMapOfIntegerInteger aIt; // - const BOPCol_DataMapOfIntegerInteger& aMSDV=myDS->ShapesSD(); + const TColStd_DataMapOfIntegerInteger& aMSDV=myDS->ShapesSD(); aIt.Initialize(aMSDV); for (; aIt.More(); aIt.Next()) { nV=aIt.Key(); @@ -51,16 +51,16 @@ void BOPAlgo_Builder::FillImagesVertices() const TopoDS_Shape& aV=myDS->Shape(nV); const TopoDS_Shape& aVSD=myDS->Shape(nVSD); // - BOPCol_ListOfShape aLVSD(myAllocator); + TopTools_ListOfShape aLVSD(myAllocator); // aLVSD.Append(aVSD); myImages.Bind(aV, aLVSD); // myShapesSD.Bind(aV, aVSD); // - BOPCol_ListOfShape* pLOr = myOrigins.ChangeSeek(aVSD); + TopTools_ListOfShape* pLOr = myOrigins.ChangeSeek(aVSD); if (!pLOr) { - pLOr = myOrigins.Bound(aVSD, BOPCol_ListOfShape()); + pLOr = myOrigins.Bound(aVSD, TopTools_ListOfShape()); } pLOr->Append(aV); } @@ -89,7 +89,7 @@ void BOPAlgo_Builder::FillImagesVertices() // Fill the images of the edge from the list of its pave blocks. // The small edges, having no pave blocks, will have the empty list // of images and, thus, will be avoided in the result. - BOPCol_ListOfShape *pLS = myImages.Bound(aE, BOPCol_ListOfShape()); + TopTools_ListOfShape *pLS = myImages.Bound(aE, TopTools_ListOfShape()); // BOPDS_ListIteratorOfListOfPaveBlock aItPB(aLPB); for (; aItPB.More(); aItPB.Next()) { @@ -100,9 +100,9 @@ void BOPAlgo_Builder::FillImagesVertices() const TopoDS_Shape& aSpR = myDS->Shape(nSpR); pLS->Append(aSpR); // - BOPCol_ListOfShape* pLOr = myOrigins.ChangeSeek(aSpR); + TopTools_ListOfShape* pLOr = myOrigins.ChangeSeek(aSpR); if (!pLOr) { - pLOr = myOrigins.Bound(aSpR, BOPCol_ListOfShape()); + pLOr = myOrigins.Bound(aSpR, TopTools_ListOfShape()); } pLOr->Append(aE); // @@ -142,8 +142,8 @@ void BOPAlgo_Builder::FillImagesVertices() { TopAbs_ShapeEnum aType; BRep_Builder aBB; - BOPCol_MapOfShape aM; - BOPCol_ListIteratorOfListOfShape aIt, aItIm; + TopTools_MapOfShape aM; + TopTools_ListIteratorOfListOfShape aIt, aItIm; // aIt.Initialize(myArguments); for (; aIt.More(); aIt.Next()) { @@ -151,7 +151,7 @@ void BOPAlgo_Builder::FillImagesVertices() aType=aS.ShapeType(); if (aType==theType) { if (myImages.IsBound(aS)){ - const BOPCol_ListOfShape& aLSIm=myImages.Find(aS); + const TopTools_ListOfShape& aLSIm=myImages.Find(aS); aItIm.Initialize(aLSIm); for (; aItIm.More(); aItIm.Next()) { const TopoDS_Shape& aSIm=aItIm.Value(); @@ -175,7 +175,7 @@ void BOPAlgo_Builder::FillImagesVertices() void BOPAlgo_Builder::FillImagesContainers(const TopAbs_ShapeEnum theType) { Standard_Integer i, aNbS; - BOPCol_MapOfShape aMFP(100, myAllocator); + TopTools_MapOfShape aMFP(100, myAllocator); // aNbS=myDS->NbSourceShapes(); for (i=0; iNbSourceShapes(); for (i=0; i #include #include -#include -#include -#include -#include -#include -#include -#include #include #include #include @@ -36,7 +29,6 @@ #include #include #include -#include #include #include #include @@ -44,14 +36,18 @@ #include #include #include +#include #include #include #include #include #include #include +#include #include #include +#include +#include #include #include #include @@ -59,12 +55,13 @@ #include #include #include +#include #include // static TopoDS_Face BuildDraftFace(const TopoDS_Face& theFace, - const BOPCol_DataMapOfShapeListOfShape& theImages, + const TopTools_DataMapOfShapeListOfShape& theImages, Handle(IntTools_Context)& theCtx); //======================================================================= @@ -119,30 +116,30 @@ class BOPAlgo_PairOfShapeBoolean : public BOPAlgo_Algo { Handle(IntTools_Context) myContext; }; // -typedef BOPCol_NCVector \ +typedef NCollection_Vector \ BOPAlgo_VectorOfPairOfShapeBoolean; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPCol_BuilderSDFaceFunctor; + IntTools_Context> BOPAlgo_BuilderSDFaceFunctor; // -typedef BOPCol_ContextCnt - BOPAlgo_BuilderSDFaceCnt; // //======================================================================= // BuilderFace // -typedef BOPCol_NCVector BOPAlgo_VectorOfBuilderFace; +typedef NCollection_Vector BOPAlgo_VectorOfBuilderFace; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_BuilderFaceFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_BuilderFaceCnt; // @@ -205,15 +202,15 @@ class BOPAlgo_VFI : public BOPAlgo_Algo { Handle(IntTools_Context) myContext; }; // -typedef BOPCol_NCVector BOPAlgo_VectorOfVFI; +typedef NCollection_Vector BOPAlgo_VectorOfVFI; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_VFIFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_VFICnt; @@ -240,9 +237,9 @@ void BOPAlgo_Builder::BuildSplitFaces() TopoDS_Edge aSp, aEE; TopAbs_Orientation anOriF, anOriE; TopExp_Explorer aExp; - BOPCol_ListIteratorOfListOfShape aIt; - BOPCol_ListOfInteger aLIAV; - BOPCol_MapOfShape aMFence; + TopTools_ListIteratorOfListOfShape aIt; + TColStd_ListOfInteger aLIAV; + TopTools_MapOfShape aMFence; Handle(NCollection_BaseAllocator) aAllocator; BOPAlgo_VectorOfBuilderFace aVBF; // @@ -250,12 +247,12 @@ void BOPAlgo_Builder::BuildSplitFaces() aAllocator= NCollection_BaseAllocator::CommonBaseAllocator(); // - BOPCol_ListOfShape aLE(aAllocator); - BOPCol_MapOfShape aMDE(100, aAllocator); + TopTools_ListOfShape aLE(aAllocator); + TopTools_MapOfShape aMDE(100, aAllocator); // // Build temporary map of faces images to avoid rebuilding // of the faces without any IN or section edges - NCollection_IndexedDataMap aFacesIm; + NCollection_IndexedDataMap aFacesIm; // aNbS=myDS->NbSourceShapes(); // @@ -302,7 +299,7 @@ void BOPAlgo_Builder::BuildSplitFaces() TopoDS_Face aFD = BuildDraftFace(aF, myImages, myContext); if (!aFD.IsNull()) { - aFacesIm(aFacesIm.Add(i, BOPCol_ListOfShape())).Append(aFD); + aFacesIm(aFacesIm.Add(i, TopTools_ListOfShape())).Append(aFD); continue; } } @@ -359,7 +356,7 @@ void BOPAlgo_Builder::BuildSplitFaces() bIsDegenerated=BRep_Tool::Degenerated(aE); - const BOPCol_ListOfShape& aLIE=myImages.Find(aE); + const TopTools_ListOfShape& aLIE=myImages.Find(aE); aIt.Initialize(aLIE); for (; aIt.More(); aIt.Next()) { aSp=(*(TopoDS_Edge*)(&aIt.Value())); @@ -431,7 +428,7 @@ void BOPAlgo_Builder::BuildSplitFaces() BRepLib::BuildPCurveForEdgesOnPlane(aLE, aFF); } // 3 Build split faces - BOPAlgo_BuilderFace& aBF=aVBF.Append1(); + BOPAlgo_BuilderFace& aBF=aVBF.Appended(); aBF.SetFace(aF); aBF.SetShapes(aLE); aBF.SetRunParallel(myRunParallel); @@ -443,7 +440,7 @@ void BOPAlgo_Builder::BuildSplitFaces() BOPAlgo_BuilderFaceCnt::Perform(myRunParallel, aVBF); //=================================================== // - Standard_Integer aNbBF = aVBF.Extent(); + Standard_Integer aNbBF = aVBF.Length(); for (k = 0; k < aNbBF; ++k) { BOPAlgo_BuilderFace& aBF = aVBF(k); @@ -455,9 +452,9 @@ void BOPAlgo_Builder::BuildSplitFaces() { const TopoDS_Face& aF = TopoDS::Face(myDS->Shape(aFacesIm.FindKey(k))); anOriF = aF.Orientation(); - const BOPCol_ListOfShape& aLFR = aFacesIm(k); + const TopTools_ListOfShape& aLFR = aFacesIm(k); // - BOPCol_ListOfShape* pLFIm = mySplits.Bound(aF, BOPCol_ListOfShape()); + TopTools_ListOfShape* pLFIm = mySplits.Bound(aF, TopTools_ListOfShape()); aIt.Initialize(aLFR); for (; aIt.More(); aIt.Next()) { TopoDS_Shape& aFR=aIt.ChangeValue(); @@ -476,7 +473,7 @@ void BOPAlgo_Builder::BuildSplitFaces() //======================================================================= typedef NCollection_IndexedDataMap BOPAlgo_IndexedDataMapOfSetListOfShape; static void AddEdgeSet(const TopoDS_Shape& theS, @@ -487,9 +484,9 @@ static void AddEdgeSet(const TopoDS_Shape& theS, BOPTools_Set aSE; aSE.Add(theS, TopAbs_EDGE); // Add set to the map, keeping connection to the shape - BOPCol_ListOfShape* pLF = theMap.ChangeSeek(aSE); + TopTools_ListOfShape* pLF = theMap.ChangeSeek(aSE); if (!pLF) - pLF = &theMap(theMap.Add(aSE, BOPCol_ListOfShape(theAllocator))); + pLF = &theMap(theMap.Add(aSE, TopTools_ListOfShape(theAllocator))); pLF->Append(theS); } @@ -502,7 +499,7 @@ void BOPAlgo_Builder::FillSameDomainFaces() // It is necessary to analyze all Face/Face intersections // and find all faces with equal sets of edges const BOPDS_VectorOfInterfFF& aFFs = myDS->InterfFF(); - Standard_Integer aNbFFs = aFFs.Extent(); + Standard_Integer aNbFFs = aFFs.Length(); if (!aNbFFs) return; @@ -511,9 +508,9 @@ void BOPAlgo_Builder::FillSameDomainFaces() // Vector to store the indices of faces for future sorting // for making the SD face for the group from the face with // smallest index in Data structure - BOPCol_NCVector aFIVec(256, aAllocator); + NCollection_Vector aFIVec(256, aAllocator); // Fence map to avoid repeated checks of the same face. - BOPCol_MapOfInteger aMFence(1, aAllocator); + TColStd_MapOfInteger aMFence(1, aAllocator); // Fill the vector with indices of faces for (Standard_Integer i = 0; i < aNbFFs; ++i) @@ -531,7 +528,7 @@ void BOPAlgo_Builder::FillSameDomainFaces() if (!aMFence.Add(nF[j])) continue; - aFIVec.Append1() = nF[j]; + aFIVec.Appended() = nF[j]; } } @@ -540,13 +537,13 @@ void BOPAlgo_Builder::FillSameDomainFaces() // Data map of set of edges with all faces having this set NCollection_IndexedDataMap anESetFaces(1, aAllocator); // Map of planar bounded faces. If such faces have the same Edge set // they are considered Same domain, without additional check. - BOPCol_MapOfShape aMFPlanar(1, aAllocator); + TopTools_MapOfShape aMFPlanar(1, aAllocator); - Standard_Integer aNbF = aFIVec.Extent(); + Standard_Integer aNbF = aFIVec.Length(); for (Standard_Integer i = 0; i < aNbF; ++i) { const Standard_Integer nF = aFIVec(i); @@ -567,10 +564,10 @@ void BOPAlgo_Builder::FillSameDomainFaces() } } - const BOPCol_ListOfShape* pLFSp = mySplits.Seek(aF); + const TopTools_ListOfShape* pLFSp = mySplits.Seek(aF); if (pLFSp) { - BOPCol_ListIteratorOfListOfShape aItLF(*pLFSp); + TopTools_ListIteratorOfListOfShape aItLF(*pLFSp); for (; aItLF.More(); aItLF.Next()) { AddEdgeSet(aItLF.Value(), anESetFaces, aAllocator); @@ -590,23 +587,23 @@ void BOPAlgo_Builder::FillSameDomainFaces() BOPAlgo_VectorOfPairOfShapeBoolean aVPSB; // Back and forth map of SD faces to make the blocks - BOPCol_IndexedDataMapOfShapeListOfShape aDMSLS(1, aAllocator); + TopTools_IndexedDataMapOfShapeListOfShape aDMSLS(1, aAllocator); Standard_Integer aNbSets = anESetFaces.Extent(); for (Standard_Integer i = 1; i <= aNbSets; ++i) { - const BOPCol_ListOfShape& aLF = anESetFaces(i); + const TopTools_ListOfShape& aLF = anESetFaces(i); if (aLF.Extent() < 2) continue; // All possible pairs from should be checked - BOPCol_ListIteratorOfListOfShape aIt1(aLF); + TopTools_ListIteratorOfListOfShape aIt1(aLF); for (; aIt1.More(); aIt1.Next()) { const TopoDS_Shape& aF1 = aIt1.Value(); Standard_Boolean bCheckPlanar = aMFPlanar.Contains(aF1); - BOPCol_ListIteratorOfListOfShape aIt2 = aIt1; + TopTools_ListIteratorOfListOfShape aIt2 = aIt1; for (aIt2.Next(); aIt2.More(); aIt2.Next()) { const TopoDS_Shape& aF2 = aIt2.Value(); @@ -617,7 +614,7 @@ void BOPAlgo_Builder::FillSameDomainFaces() continue; } // Add pair for analysis - BOPAlgo_PairOfShapeBoolean& aPSB = aVPSB.Append1(); + BOPAlgo_PairOfShapeBoolean& aPSB = aVPSB.Appended(); aPSB.Shape1() = aF1; aPSB.Shape2() = aF2; aPSB.SetFuzzyValue(myFuzzyValue); @@ -631,9 +628,9 @@ void BOPAlgo_Builder::FillSameDomainFaces() BOPAlgo_BuilderSDFaceCnt::Perform(myRunParallel, aVPSB, myContext); //================================================================ - NCollection_List aMBlocks(aAllocator); + NCollection_List aMBlocks(aAllocator); // Fill map with SD faces to make the blocks - Standard_Integer aNbPairs = aVPSB.Extent(); + Standard_Integer aNbPairs = aVPSB.Length(); for (Standard_Integer i = 0; i < aNbPairs; ++i) { BOPAlgo_PairOfShapeBoolean& aPSB = aVPSB(i); @@ -648,20 +645,20 @@ void BOPAlgo_Builder::FillSameDomainFaces() (aDMSLS, aMBlocks, aAllocator); // Fill same domain faces map - NCollection_List::Iterator aItB(aMBlocks); + NCollection_List::Iterator aItB(aMBlocks); for (; aItB.More(); aItB.Next()) { - const BOPCol_ListOfShape& aLSD = aItB.Value(); + const TopTools_ListOfShape& aLSD = aItB.Value(); // First face will be SD face for all faces in the group const TopoDS_Shape& aFSD1 = aLSD.First(); - BOPCol_ListIteratorOfListOfShape aItLF(aLSD); + TopTools_ListIteratorOfListOfShape aItLF(aLSD); for (; aItLF.More(); aItLF.Next()) { const TopoDS_Shape& aFSD = aItLF.Value(); myShapesSD.Bind(aFSD, aFSD1); // If the face has no splits but have an SD face, it is considered as being split if (myDS->Index(aFSD) >= 0) - mySplits.Bound(aFSD, BOPCol_ListOfShape())->Append(aFSD); + mySplits.Bound(aFSD, TopTools_ListOfShape())->Append(aFSD); } } aMBlocks.Clear(); @@ -677,10 +674,10 @@ void BOPAlgo_Builder::FillImagesFaces1() TopoDS_Face aFSD; TopoDS_Vertex aVx; BRep_Builder aBB; - BOPCol_ListOfInteger aLIAV; - BOPCol_ListOfShape aLFIm; - BOPCol_ListIteratorOfListOfInteger aItV; - BOPCol_ListIteratorOfListOfShape aItLS, aItF; + TColStd_ListOfInteger aLIAV; + TopTools_ListOfShape aLFIm; + TColStd_ListIteratorOfListOfInteger aItV; + TopTools_ListIteratorOfListOfShape aItLS, aItF; BOPAlgo_VectorOfVFI aVVFI; // aNbS=myDS->NbSourceShapes(); @@ -701,7 +698,7 @@ void BOPAlgo_Builder::FillImagesFaces1() myDS->AloneVertices(i, aLIAV); aLFIm.Clear(); // - const BOPCol_ListOfShape& aLSp=mySplits.Find(aF); + const TopTools_ListOfShape& aLSp=mySplits.Find(aF); aItLS.Initialize(aLSp); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Face& aFSp=(*(TopoDS_Face*)(&aItLS.Value())); @@ -727,9 +724,9 @@ void BOPAlgo_Builder::FillImagesFaces1() for (; aItLS.More(); aItLS.Next()) { const TopoDS_Face& aFSp=(*(TopoDS_Face*)(&aItLS.Value())); // - BOPCol_ListOfShape* pLOr = myOrigins.ChangeSeek(aFSp); + TopTools_ListOfShape* pLOr = myOrigins.ChangeSeek(aFSp); if (!pLOr) { - pLOr = myOrigins.Bound(aFSp, BOPCol_ListOfShape()); + pLOr = myOrigins.Bound(aFSp, TopTools_ListOfShape()); } pLOr->Append(aF); } @@ -745,7 +742,7 @@ void BOPAlgo_Builder::FillImagesFaces1() for (; aItF.More(); aItF.Next()) { TopoDS_Face& aFy=(*(TopoDS_Face*)(&aItF.Value())); // - BOPAlgo_VFI& aVFI=aVVFI.Append1(); + BOPAlgo_VFI& aVFI=aVVFI.Appended(); aVFI.SetVertex(aVx); aVFI.SetFace(aFy); aVFI.SetFuzzyValue(myFuzzyValue); @@ -755,7 +752,7 @@ void BOPAlgo_Builder::FillImagesFaces1() }// for (i=0; i map //======================================================================= TopoDS_Face BuildDraftFace(const TopoDS_Face& theFace, - const BOPCol_DataMapOfShapeListOfShape& theImages, + const TopTools_DataMapOfShapeListOfShape& theImages, Handle(IntTools_Context)& theCtx) { BRep_Builder aBB; @@ -818,7 +815,7 @@ TopoDS_Face BuildDraftFace(const TopoDS_Face& theFace, return aNull; } - const BOPCol_ListOfShape* pLEIm = theImages.Seek(aE); + const TopTools_ListOfShape* pLEIm = theImages.Seek(aE); if (!pLEIm) { aBB.Add(aNewWire, aE); @@ -830,7 +827,7 @@ TopoDS_Face BuildDraftFace(const TopoDS_Face& theFace, // Check if the original edge is closed on the face Standard_Boolean bIsClosed = BRep_Tool::IsClosed(aE, theFace); - BOPCol_ListIteratorOfListOfShape aItLEIm(*pLEIm); + TopTools_ListIteratorOfListOfShape aItLEIm(*pLEIm); for (; aItLEIm.More(); aItLEIm.Next()) { TopoDS_Edge& aSp = TopoDS::Edge(aItLEIm.Value()); diff --git a/src/BOPAlgo/BOPAlgo_Builder_3.cxx b/src/BOPAlgo/BOPAlgo_Builder_3.cxx index 9676f6a965..b741eb033a 100644 --- a/src/BOPAlgo/BOPAlgo_Builder_3.cxx +++ b/src/BOPAlgo/BOPAlgo_Builder_3.cxx @@ -41,36 +41,32 @@ #include #include // -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -// #include // #include #include // -#include #include #include #include +#include // #include #include #include +#include + +#include +#include +#include +#include +#include #include static void OwnInternalShapes(const TopoDS_Shape& , - BOPCol_IndexedMapOfShape& ); + TopTools_IndexedMapOfShape& ); //======================================================================= @@ -100,8 +96,8 @@ void BOPAlgo_Builder::FillImagesSolids() // aAlr=NCollection_BaseAllocator::CommonBaseAllocator(); // - BOPCol_DataMapOfShapeListOfShape theInParts(100, aAlr); - BOPCol_DataMapOfShapeShape theDraftSolids(100, aAlr); + TopTools_DataMapOfShapeListOfShape theInParts(100, aAlr); + TopTools_DataMapOfShapeShape theDraftSolids(100, aAlr); // FillIn3DParts(theInParts, theDraftSolids, aAlr); BuildSplitSolids(theInParts, theDraftSolids, aAlr); @@ -115,22 +111,22 @@ void BOPAlgo_Builder::FillImagesSolids() //purpose : //======================================================================= void BOPAlgo_Builder::FillIn3DParts - (BOPCol_DataMapOfShapeListOfShape& theInParts, - BOPCol_DataMapOfShapeShape& theDraftSolids, - const BOPCol_BaseAllocator& ) + (TopTools_DataMapOfShapeListOfShape& theInParts, + TopTools_DataMapOfShapeShape& theDraftSolids, + const Handle(NCollection_BaseAllocator)& ) { Handle(NCollection_BaseAllocator) anAlloc = new NCollection_IncAllocator; // Find all faces that are IN solids // Store boxes of the shapes into a map - BOPCol_DataMapOfShapeBox aShapeBoxMap(1, anAlloc); + TopTools_DataMapOfShapeBox aShapeBoxMap(1, anAlloc); // Fence map - BOPCol_MapOfShape aMFence(1, anAlloc); + TopTools_MapOfShape aMFence(1, anAlloc); // Get all faces - BOPCol_ListOfShape aLFaces(anAlloc); + TopTools_ListOfShape aLFaces(anAlloc); Standard_Integer i, aNbS = myDS->NbSourceShapes(); for (i = 0; i < aNbS; ++i) @@ -140,11 +136,11 @@ void BOPAlgo_Builder::FillIn3DParts continue; const TopoDS_Shape& aS = aSI.Shape(); - const BOPCol_ListOfShape* pLSIm = myImages.Seek(aS); + const TopTools_ListOfShape* pLSIm = myImages.Seek(aS); if (pLSIm) { - BOPCol_ListIteratorOfListOfShape aItLSIm(*pLSIm); + TopTools_ListIteratorOfListOfShape aItLSIm(*pLSIm); for (; aItLSIm.More(); aItLSIm.Next()) { const TopoDS_Shape& aSIm = aItLSIm.Value(); @@ -162,11 +158,11 @@ void BOPAlgo_Builder::FillIn3DParts BRep_Builder aBB; // Get all solids - BOPCol_ListOfShape aLSolids(anAlloc); + TopTools_ListOfShape aLSolids(anAlloc); // Keep INTERNAL faces of the solids - BOPCol_DataMapOfShapeListOfShape aSolidsIF(1, anAlloc); + TopTools_DataMapOfShapeListOfShape aSolidsIF(1, anAlloc); // Draft solids - BOPCol_IndexedDataMapOfShapeShape aDraftSolid(1, anAlloc); + TopTools_IndexedDataMapOfShapeShape aDraftSolid(1, anAlloc); for (i = 0; i < aNbS; ++i) { @@ -183,7 +179,7 @@ void BOPAlgo_Builder::FillIn3DParts myDS->BuildBndBoxSolid(i, aBoxS, myCheckInverted); // Build Draft Solid - BOPCol_ListOfShape aLIF; + TopTools_ListOfShape aLIF; TopoDS_Solid aSD; aBB.MakeSolid(aSD); BuildDraftSolid(aSolid, aSD, aLIF); @@ -195,7 +191,7 @@ void BOPAlgo_Builder::FillIn3DParts } // Perform classification of the faces - BOPCol_IndexedDataMapOfShapeListOfShape anInParts; + TopTools_IndexedDataMapOfShapeListOfShape anInParts; BOPAlgo_Tools::ClassifyFaces(aLFaces, aLSolids, myRunParallel, myContext, anInParts, aShapeBoxMap, aSolidsIF); @@ -206,8 +202,8 @@ void BOPAlgo_Builder::FillIn3DParts { const TopoDS_Solid& aSolid = TopoDS::Solid(aDraftSolid.FindKey(i)); const TopoDS_Solid& aSDraft = TopoDS::Solid(aDraftSolid(i)); - const BOPCol_ListOfShape& aLInFaces = anInParts.FindFromKey(aSDraft); - const BOPCol_ListOfShape& aLInternal = aSolidsIF.Find(aSDraft); + const TopTools_ListOfShape& aLInFaces = anInParts.FindFromKey(aSDraft); + const TopTools_ListOfShape& aLInternal = aSolidsIF.Find(aSDraft); Standard_Integer aNbIN = aLInFaces.Extent(); @@ -229,9 +225,9 @@ void BOPAlgo_Builder::FillIn3DParts if (aNbInt || aNbIN) { // Combine the lists - BOPCol_ListOfShape *pLIN = theInParts.Bound(aSolid, BOPCol_ListOfShape()); + TopTools_ListOfShape *pLIN = theInParts.Bound(aSolid, TopTools_ListOfShape()); - BOPCol_ListIteratorOfListOfShape aItLS(aLInFaces); + TopTools_ListIteratorOfListOfShape aItLS(aLInFaces); for (; aItLS.More(); aItLS.Next()) pLIN->Append(aItLS.Value()); @@ -247,7 +243,7 @@ void BOPAlgo_Builder::FillIn3DParts //======================================================================= void BOPAlgo_Builder::BuildDraftSolid(const TopoDS_Shape& theSolid, TopoDS_Shape& theDraftSolid, - BOPCol_ListOfShape& theLIF) + TopTools_ListOfShape& theLIF) { Standard_Boolean bToReverse; Standard_Integer iFlag; @@ -256,7 +252,7 @@ void BOPAlgo_Builder::BuildDraftSolid(const TopoDS_Shape& theSolid, TopoDS_Shell aShD; TopoDS_Shape aFSDx, aFx; BRep_Builder aBB; - BOPCol_ListIteratorOfListOfShape aItS; + TopTools_ListIteratorOfListOfShape aItS; // aOrSd=theSolid.Orientation(); theDraftSolid.Orientation(aOrSd); @@ -279,7 +275,7 @@ void BOPAlgo_Builder::BuildDraftSolid(const TopoDS_Shape& theSolid, aOrF=aF.Orientation(); // if (myImages.IsBound(aF)) { - const BOPCol_ListOfShape& aLSp=myImages.Find(aF); + const TopTools_ListOfShape& aLSp=myImages.Find(aF); aItS.Initialize(aLSp); for (; aItS.More(); aItS.Next()) { aFx=aItS.Value(); @@ -335,12 +331,12 @@ void BOPAlgo_Builder::BuildDraftSolid(const TopoDS_Shape& theSolid, //======================================================================= // Vector of Solid Builders -typedef BOPCol_NCVector BOPAlgo_VectorOfBuilderSolid; +typedef NCollection_Vector BOPAlgo_VectorOfBuilderSolid; // Functors to split solids -typedef BOPCol_Functor BOPAlgo_BuilderSolidFunctor; // -typedef BOPCol_Cnt BOPAlgo_BuilderSolidCnt; //======================================================================= @@ -349,20 +345,20 @@ typedef BOPCol_CntShapeInfo(i); @@ -405,10 +401,10 @@ void BOPAlgo_Builder::BuildSplitSolids continue; const TopoDS_Shape& aSD = theDraftSolids.Find(aS); - const BOPCol_ListOfShape* pLFIN = theInParts.Seek(aS); + const TopTools_ListOfShape* pLFIN = theInParts.Seek(aS); if (!pLFIN || pLFIN->IsEmpty()) { - aSolidsIm(aSolidsIm.Add(aS, BOPCol_ListOfShape())).Append(aSD); + aSolidsIm(aSolidsIm.Add(aS, TopTools_ListOfShape())).Append(aSD); continue; } @@ -433,7 +429,7 @@ void BOPAlgo_Builder::BuildSplitSolids } // // 1.3 Build new solids - BOPAlgo_BuilderSolid& aBS=aVBS.Append1(); + BOPAlgo_BuilderSolid& aBS=aVBS.Appended(); aBS.SetSolid(aSolid); aBS.SetShapes(aSFS); aBS.SetRunParallel(myRunParallel); @@ -442,7 +438,7 @@ void BOPAlgo_Builder::BuildSplitSolids // Standard_Integer k, aNbBS; // - aNbBS=aVBS.Extent(); + aNbBS=aVBS.Length(); // //=================================================== BOPAlgo_BuilderSolidCnt::Perform(myRunParallel, aVBS); @@ -459,10 +455,10 @@ void BOPAlgo_Builder::BuildSplitSolids for (k = 1; k <= aNbBS; ++k) { const TopoDS_Shape& aS = aSolidsIm.FindKey(k); - const BOPCol_ListOfShape& aLSR = aSolidsIm(k); + const TopTools_ListOfShape& aLSR = aSolidsIm(k); // if (!myImages.IsBound(aS)) { - BOPCol_ListOfShape* pLSx = myImages.Bound(aS, BOPCol_ListOfShape()); + TopTools_ListOfShape* pLSx = myImages.Bound(aS, TopTools_ListOfShape()); // aIt.Initialize(aLSR); for (; aIt.More(); aIt.Next()) { @@ -477,9 +473,9 @@ void BOPAlgo_Builder::BuildSplitSolids const TopoDS_Shape& aSx=aSTx.Shape(); pLSx->Append(aSx); // - BOPCol_ListOfShape* pLOr = myOrigins.ChangeSeek(aSx); + TopTools_ListOfShape* pLOr = myOrigins.ChangeSeek(aSx); if (!pLOr) { - pLOr = myOrigins.Bound(aSx, BOPCol_ListOfShape()); + pLOr = myOrigins.Bound(aSx, TopTools_ListOfShape()); } pLOr->Append(aS); // @@ -501,28 +497,28 @@ void BOPAlgo_Builder::FillInternalShapes() TopAbs_State aState; TopoDS_Iterator aItS; BRep_Builder aBB; - BOPCol_ListIteratorOfListOfShape aIt, aIt1; + TopTools_ListIteratorOfListOfShape aIt, aIt1; // Handle(NCollection_BaseAllocator) aAllocator; //-----------------------------------------------------scope f aAllocator=NCollection_BaseAllocator::CommonBaseAllocator(); // - BOPCol_IndexedDataMapOfShapeListOfShape aMSx(100, aAllocator); - BOPCol_IndexedMapOfShape aMx(100, aAllocator); - BOPCol_IndexedMapOfShape aMSI(100, aAllocator); - BOPCol_MapOfShape aMFence(100, aAllocator); - BOPCol_MapOfShape aMSOr(100, aAllocator); - BOPCol_ListOfShape aLSd(aAllocator); - BOPCol_ListOfShape aLArgs(aAllocator); - BOPCol_ListOfShape aLSC(aAllocator); - BOPCol_ListOfShape aLSI(aAllocator); + TopTools_IndexedDataMapOfShapeListOfShape aMSx(100, aAllocator); + TopTools_IndexedMapOfShape aMx(100, aAllocator); + TopTools_IndexedMapOfShape aMSI(100, aAllocator); + TopTools_MapOfShape aMFence(100, aAllocator); + TopTools_MapOfShape aMSOr(100, aAllocator); + TopTools_ListOfShape aLSd(aAllocator); + TopTools_ListOfShape aLArgs(aAllocator); + TopTools_ListOfShape aLSC(aAllocator); + TopTools_ListOfShape aLSI(aAllocator); // // 1. Shapes to process // // 1.1 Shapes from pure arguments aMSI // 1.1.1 vertex, edge, wire // - const BOPCol_ListOfShape& aArguments=myDS->Arguments(); + const TopTools_ListOfShape& aArguments=myDS->Arguments(); aIt.Initialize(aArguments); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS=aIt.Value(); @@ -556,7 +552,7 @@ void BOPAlgo_Builder::FillInternalShapes() aType==TopAbs_WIRE) { if (aMFence.Add(aS)) { if (myImages.IsBound(aS)) { - const BOPCol_ListOfShape &aLSp=myImages.Find(aS); + const TopTools_ListOfShape &aLSp=myImages.Find(aS); aIt1.Initialize(aLSp); for (; aIt1.More(); aIt1.Next()) { const TopoDS_Shape& aSp=aIt1.Value(); @@ -595,7 +591,7 @@ void BOPAlgo_Builder::FillInternalShapes() for (j=1; j<=aNbSx; ++j) { const TopoDS_Shape& aSi=aMx(j); if (myImages.IsBound(aSi)) { - const BOPCol_ListOfShape &aLSp=myImages.Find(aSi); + const TopTools_ListOfShape &aLSp=myImages.Find(aSi); aIt1.Initialize(aLSp); for (; aIt1.More(); aIt1.Next()) { const TopoDS_Shape& aSp=aIt1.Value(); @@ -609,23 +605,23 @@ void BOPAlgo_Builder::FillInternalShapes() // // build aux map from splits of solids if (myImages.IsBound(aS)) { - const BOPCol_ListOfShape &aLSp=myImages.Find(aS); + const TopTools_ListOfShape &aLSp=myImages.Find(aS); aIt.Initialize(aLSp); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSp=aIt.Value(); if (aMFence.Add(aSp)) { - BOPTools::MapShapesAndAncestors(aSp, TopAbs_VERTEX, TopAbs_EDGE, aMSx); - BOPTools::MapShapesAndAncestors(aSp, TopAbs_VERTEX, TopAbs_FACE, aMSx); - BOPTools::MapShapesAndAncestors(aSp, TopAbs_EDGE , TopAbs_FACE, aMSx); + TopExp::MapShapesAndAncestors(aSp, TopAbs_VERTEX, TopAbs_EDGE, aMSx); + TopExp::MapShapesAndAncestors(aSp, TopAbs_VERTEX, TopAbs_FACE, aMSx); + TopExp::MapShapesAndAncestors(aSp, TopAbs_EDGE , TopAbs_FACE, aMSx); aLSd.Append(aSp); } } } else { if (aMFence.Add(aS)) { - BOPTools::MapShapesAndAncestors(aS, TopAbs_VERTEX, TopAbs_EDGE, aMSx); - BOPTools::MapShapesAndAncestors(aS, TopAbs_VERTEX, TopAbs_FACE, aMSx); - BOPTools::MapShapesAndAncestors(aS, TopAbs_EDGE , TopAbs_FACE, aMSx); + TopExp::MapShapesAndAncestors(aS, TopAbs_VERTEX, TopAbs_EDGE, aMSx); + TopExp::MapShapesAndAncestors(aS, TopAbs_VERTEX, TopAbs_FACE, aMSx); + TopExp::MapShapesAndAncestors(aS, TopAbs_EDGE , TopAbs_FACE, aMSx); aLSd.Append(aS); aMSOr.Add(aS); } @@ -638,7 +634,7 @@ void BOPAlgo_Builder::FillInternalShapes() for (i = 1; i <= aNbSI; ++i) { const TopoDS_Shape& aSI = aMSI(i); if (aMSx.Contains(aSI)) { - const BOPCol_ListOfShape &aLSx=aMSx.FindFromKey(aSI); + const TopTools_ListOfShape &aLSx=aMSx.FindFromKey(aSI); aNbSx = aLSx.Extent(); if (!aNbSx) { aLSI.Append(aSI); @@ -688,10 +684,10 @@ void BOPAlgo_Builder::FillInternalShapes() aBB.Add(aSdx, aSI); // // no need to check for images of aSd as aMSOr contains only original solids - BOPCol_ListOfShape* pLS = myImages.Bound(aSd, BOPCol_ListOfShape()); + TopTools_ListOfShape* pLS = myImages.Bound(aSd, TopTools_ListOfShape()); pLS->Append(aSdx); // - BOPCol_ListOfShape* pLOr = myOrigins.Bound(aSdx, BOPCol_ListOfShape()); + TopTools_ListOfShape* pLOr = myOrigins.Bound(aSdx, TopTools_ListOfShape()); pLOr->Append(aSd); // aMSOr.Remove(aSd); @@ -719,7 +715,7 @@ void BOPAlgo_Builder::FillInternalShapes() //purpose : //======================================================================= void OwnInternalShapes(const TopoDS_Shape& theS, - BOPCol_IndexedMapOfShape& theMx) + TopTools_IndexedMapOfShape& theMx) { TopoDS_Iterator aIt; // diff --git a/src/BOPAlgo/BOPAlgo_Builder_4.cxx b/src/BOPAlgo/BOPAlgo_Builder_4.cxx index bf88a8b772..a495287b29 100644 --- a/src/BOPAlgo/BOPAlgo_Builder_4.cxx +++ b/src/BOPAlgo/BOPAlgo_Builder_4.cxx @@ -18,14 +18,14 @@ #include #include -#include -#include #include -#include #include #include +#include #include #include +#include +#include //======================================================================= //function : Generated @@ -46,7 +46,7 @@ const TopTools_ListOfShape& BOPAlgo_Builder::Modified { Standard_Boolean bHasImage, bToReverse; TopAbs_ShapeEnum aType; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // myHistShapes.Clear(); // @@ -68,7 +68,7 @@ const TopTools_ListOfShape& BOPAlgo_Builder::Modified // //PrepareHistory(); // - const BOPCol_ListOfShape& aLSp=myImages.Find(theS); + const TopTools_ListOfShape& aLSp=myImages.Find(theS); aIt.Initialize(aLSp); for (; aIt.More(); aIt.Next()) { TopoDS_Shape aSp=aIt.Value(); @@ -104,7 +104,7 @@ Standard_Boolean BOPAlgo_Builder::IsDeleted { Standard_Boolean bRet; TopAbs_ShapeEnum aType; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // bRet = Standard_True; // @@ -123,7 +123,7 @@ Standard_Boolean BOPAlgo_Builder::IsDeleted return bRet; } // - const BOPCol_ListOfShape& aLSp = myImages.Find(theS); + const TopTools_ListOfShape& aLSp = myImages.Find(theS); aIt.Initialize(aLSp); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSp = aIt.Value(); @@ -154,22 +154,22 @@ void BOPAlgo_Builder::PrepareHistory() // Standard_Boolean bHasImage; TopAbs_ShapeEnum aType; - BOPCol_MapOfShape aMS; - BOPCol_ListIteratorOfListOfShape aIt; - BOPCol_MapIteratorOfMapOfShape aItM; + TopTools_MapOfShape aMS; + TopTools_ListIteratorOfListOfShape aIt; + TopTools_MapIteratorOfMapOfShape aItM; // // 1. Clearing BOPAlgo_BuilderShape::PrepareHistory(); // // 2. myMapShape - all shapes of result with theirs sub-shapes - BOPTools::MapShapes(myShape, myMapShape); + TopExp::MapShapes(myShape, myMapShape); // // 3. MS - all argument shapes with theirs sub-shapes - const BOPCol_ListOfShape& aArguments=myDS->Arguments(); + const TopTools_ListOfShape& aArguments=myDS->Arguments(); aIt.Initialize(aArguments); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSx=aIt.Value(); - BOPTools::MapShapes(aSx, aMS); + TopExp::MapShapes(aSx, aMS); } // // 4. Treatment @@ -185,7 +185,7 @@ void BOPAlgo_Builder::PrepareHistory() // 4.1 .myImagesResult bHasImage=myImages.IsBound(aSx); // - BOPCol_ListOfShape aLSx; + TopTools_ListOfShape aLSx; if (!bHasImage) { if (myMapShape.Contains(aSx)) { aLSx.Append(aSx); @@ -193,7 +193,7 @@ void BOPAlgo_Builder::PrepareHistory() } } else { - const BOPCol_ListOfShape& aLSp=myImages.Find(aSx); + const TopTools_ListOfShape& aLSp=myImages.Find(aSx); aIt.Initialize(aLSp); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSp=aIt.Value(); diff --git a/src/BOPAlgo/BOPAlgo_CellsBuilder.cxx b/src/BOPAlgo/BOPAlgo_CellsBuilder.cxx index 2692d7c62a..c6cd55e466 100644 --- a/src/BOPAlgo/BOPAlgo_CellsBuilder.cxx +++ b/src/BOPAlgo/BOPAlgo_CellsBuilder.cxx @@ -22,13 +22,13 @@ #include #include -#include #include #include #include -#include +#include +#include #include @@ -40,7 +40,7 @@ static void MakeTypedContainers(const TopoDS_Shape& theSC, TopoDS_Shape& theResult); -static void CollectMaterialBoundaries(const BOPCol_ListOfShape& theLS, +static void CollectMaterialBoundaries(const TopTools_ListOfShape& theLS, TopTools_MapOfShape& theMapKeepBnd); //======================================================================= @@ -146,10 +146,10 @@ void BOPAlgo_CellsBuilder::IndexParts() TopoDS_Compound anAllParts; aBB.MakeCompound(anAllParts); // - BOPCol_MapOfShape aMFence; - BOPCol_MapOfInteger aMDims; + TopTools_MapOfShape aMFence; + TColStd_MapOfInteger aMDims; // - BOPCol_ListIteratorOfListOfShape aIt(myArguments); + TopTools_ListIteratorOfListOfShape aIt(myArguments); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); // @@ -160,11 +160,11 @@ void BOPAlgo_CellsBuilder::IndexParts() TopExp_Explorer aExp(aS, aType); for (; aExp.More(); aExp.Next()) { const TopoDS_Shape& aST = aExp.Current(); - const BOPCol_ListOfShape* pLSIm = myImages.Seek(aST); + const TopTools_ListOfShape* pLSIm = myImages.Seek(aST); if (!pLSIm) { - BOPCol_ListOfShape* pLS = myIndex.ChangeSeek(aST); + TopTools_ListOfShape* pLS = myIndex.ChangeSeek(aST); if (!pLS) { - pLS = &myIndex(myIndex.Add(aST, BOPCol_ListOfShape())); + pLS = &myIndex(myIndex.Add(aST, TopTools_ListOfShape())); } pLS->Append(aS); // @@ -175,13 +175,13 @@ void BOPAlgo_CellsBuilder::IndexParts() continue; } // - BOPCol_ListIteratorOfListOfShape aItIm(*pLSIm); + TopTools_ListIteratorOfListOfShape aItIm(*pLSIm); for (; aItIm.More(); aItIm.Next()) { const TopoDS_Shape& aSTIm = aItIm.Value(); // - BOPCol_ListOfShape* pLS = myIndex.ChangeSeek(aSTIm); + TopTools_ListOfShape* pLS = myIndex.ChangeSeek(aSTIm); if (!pLS) { - pLS = &myIndex(myIndex.Add(aSTIm, BOPCol_ListOfShape())); + pLS = &myIndex(myIndex.Add(aSTIm, TopTools_ListOfShape())); } pLS->Append(aS); // @@ -207,7 +207,7 @@ void BOPAlgo_CellsBuilder::IndexParts() const TopTools_ListOfShape& aLSOr = myIndex(i); // Standard_Integer iType = BOPTools_AlgoTools::Dimension(aSP); - BOPCol_MapIteratorOfMapOfInteger aItM(aMDims); + TColStd_MapIteratorOfMapOfInteger aItM(aMDims); for (; aItM.More(); aItM.Next()) { Standard_Integer k = aItM.Value(); if (k >= iType) { @@ -217,17 +217,17 @@ void BOPAlgo_CellsBuilder::IndexParts() TopExp_Explorer aExp(aSP, TypeToExplore(k)); for (; aExp.More(); aExp.Next()) { const TopoDS_Shape& aSS = aExp.Current(); - BOPCol_ListOfShape* pLSSOr = myIndex.ChangeSeek(aSS); + TopTools_ListOfShape* pLSSOr = myIndex.ChangeSeek(aSS); if (!pLSSOr) { myIndex.Add(aSS, aLSOr); continue; } // add ancestors of the shape to the ancestors of the sub-shape - BOPCol_ListIteratorOfListOfShape aItLS(aLSOr); + TopTools_ListIteratorOfListOfShape aItLS(aLSOr); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aSOr = aItLS.Value(); // provide uniqueness of the ancestors - BOPCol_ListIteratorOfListOfShape aItLSS(*pLSSOr); + TopTools_ListIteratorOfListOfShape aItLSS(*pLSSOr); for (; aItLSS.More(); aItLSS.Next()) { if (aSOr.IsSame(aItLSS.Value())) { break; @@ -247,20 +247,20 @@ void BOPAlgo_CellsBuilder::IndexParts() //function : AddToResult //purpose : //======================================================================= -void BOPAlgo_CellsBuilder::AddToResult(const BOPCol_ListOfShape& theLSToTake, - const BOPCol_ListOfShape& theLSToAvoid, +void BOPAlgo_CellsBuilder::AddToResult(const TopTools_ListOfShape& theLSToTake, + const TopTools_ListOfShape& theLSToAvoid, const Standard_Integer theMaterial, const Standard_Boolean theUpdate) { // find parts - BOPCol_ListOfShape aParts; + TopTools_ListOfShape aParts; FindParts(theLSToTake, theLSToAvoid, aParts); if (aParts.IsEmpty()) { return; } // // collect result parts to avoid multiple adding of the same parts - BOPCol_MapOfShape aResParts; + TopTools_MapOfShape aResParts; TopoDS_Iterator aIt(myShape); for (; aIt.More(); aIt.Next()) { aResParts.Add(aIt.Value()); @@ -268,7 +268,7 @@ void BOPAlgo_CellsBuilder::AddToResult(const BOPCol_ListOfShape& theLSToTake, // Standard_Boolean bChanged = Standard_False; // add parts to result - BOPCol_ListIteratorOfListOfShape aItLP(aParts); + TopTools_ListIteratorOfListOfShape aItLP(aParts); for (; aItLP.More(); aItLP.Next()) { const TopoDS_Shape& aPart = aItLP.Value(); // provide uniqueness of the parts @@ -280,7 +280,7 @@ void BOPAlgo_CellsBuilder::AddToResult(const BOPCol_ListOfShape& theLSToTake, // // update the material if (theMaterial != 0) { - BOPCol_ListOfShape aLSP; + TopTools_ListOfShape aLSP; aItLP.Initialize(aParts); for (; aItLP.More(); aItLP.Next()) { const TopoDS_Shape& aPart = aItLP.Value(); @@ -291,9 +291,9 @@ void BOPAlgo_CellsBuilder::AddToResult(const BOPCol_ListOfShape& theLSToTake, } // for (; aIt.More(); aIt.Next()) { // if (aLSP.Extent()) { - BOPCol_ListOfShape* pLS = myMaterials.ChangeSeek(theMaterial); + TopTools_ListOfShape* pLS = myMaterials.ChangeSeek(theMaterial); if (!pLS) { - pLS = myMaterials.Bound(theMaterial, BOPCol_ListOfShape()); + pLS = myMaterials.Bound(theMaterial, TopTools_ListOfShape()); } pLS->Append(aLSP); } // if (aLSP.Extent()) { @@ -323,7 +323,7 @@ void BOPAlgo_CellsBuilder::AddAllToResult(const Standard_Integer theMaterial, myShape = myAllParts; // if (theMaterial != 0) { - BOPCol_ListOfShape* pLSM = myMaterials.Bound(theMaterial, BOPCol_ListOfShape()); + TopTools_ListOfShape* pLSM = myMaterials.Bound(theMaterial, TopTools_ListOfShape()); // TopoDS_Iterator aIt(myAllParts); for (; aIt.More(); aIt.Next()) { @@ -345,28 +345,28 @@ void BOPAlgo_CellsBuilder::AddAllToResult(const Standard_Integer theMaterial, //function : RemoveFromResult //purpose : //======================================================================= -void BOPAlgo_CellsBuilder::RemoveFromResult(const BOPCol_ListOfShape& theLSToTake, - const BOPCol_ListOfShape& theLSToAvoid) +void BOPAlgo_CellsBuilder::RemoveFromResult(const TopTools_ListOfShape& theLSToTake, + const TopTools_ListOfShape& theLSToAvoid) { // find parts - BOPCol_ListOfShape aParts; + TopTools_ListOfShape aParts; FindParts(theLSToTake, theLSToAvoid, aParts); if (aParts.IsEmpty()) { return; } // // collect parts into the map and remove parts from materials - BOPCol_MapOfShape aPartsToRemove; - BOPCol_ListIteratorOfListOfShape aItP(aParts); + TopTools_MapOfShape aPartsToRemove; + TopTools_ListIteratorOfListOfShape aItP(aParts); for (; aItP.More(); aItP.Next()) { const TopoDS_Shape& aPart = aItP.Value(); aPartsToRemove.Add(aPart); // const Standard_Integer* pMaterial = myShapeMaterial.Seek(aPart); if (pMaterial) { - BOPCol_ListOfShape* pLSM = myMaterials.ChangeSeek(*pMaterial); + TopTools_ListOfShape* pLSM = myMaterials.ChangeSeek(*pMaterial); if (pLSM) { - BOPCol_ListIteratorOfListOfShape aItM(*pLSM); + TopTools_ListIteratorOfListOfShape aItM(*pLSM); for (; aItM.More(); aItM.Next()) { if (aPart.IsSame(aItM.Value())) { pLSM->Remove(aItM); @@ -463,12 +463,12 @@ void BOPAlgo_CellsBuilder::RemoveInternalBoundaries() Standard_Boolean bChanged = Standard_False; // try to remove the internal boundaries between the // shapes of the same material - BOPCol_DataMapIteratorOfDataMapOfIntegerListOfShape aItM(myMaterials); - BOPCol_ListOfShape aLSUnify[2]; + TopTools_DataMapIteratorOfDataMapOfIntegerListOfShape aItM(myMaterials); + TopTools_ListOfShape aLSUnify[2]; TopTools_MapOfShape aKeepMap[2]; for (; aItM.More(); aItM.Next()) { Standard_Integer iMaterial = aItM.Key(); - BOPCol_ListOfShape& aLS = aItM.ChangeValue(); + TopTools_ListOfShape& aLS = aItM.ChangeValue(); // if (aLS.IsEmpty()) { continue; @@ -485,7 +485,7 @@ void BOPAlgo_CellsBuilder::RemoveInternalBoundaries() } // // check the shapes of the same material to be of the same type - BOPCol_ListIteratorOfListOfShape aItLS(aLS); + TopTools_ListIteratorOfListOfShape aItLS(aLS); TopAbs_ShapeEnum aType = aItLS.Value().ShapeType(); for (aItLS.Next(); aItLS.More(); aItLS.Next()) { if (aType != aItLS.Value().ShapeType()) { @@ -511,7 +511,7 @@ void BOPAlgo_CellsBuilder::RemoveInternalBoundaries() Standard_Integer iType = (aType == TopAbs_EDGE ? 0 : 1); CollectMaterialBoundaries(aLS, aKeepMap[iType]); // save shapes to unify later - BOPCol_ListOfShape aCopy(aLS); + TopTools_ListOfShape aCopy(aLS); aLSUnify[iType].Append(aCopy); continue; } @@ -519,7 +519,7 @@ void BOPAlgo_CellsBuilder::RemoveInternalBoundaries() { // aType is Solid; // remove internal faces between solids of the same material just now - BOPCol_ListOfShape aLSNew; + TopTools_ListOfShape aLSNew; if (RemoveInternals(aLS, aLSNew)) { bChanged = Standard_True; @@ -544,11 +544,11 @@ void BOPAlgo_CellsBuilder::RemoveInternalBoundaries() { if (aLSUnify[iType].IsEmpty()) continue; - BOPCol_ListOfShape aLSN; + TopTools_ListOfShape aLSN; if (RemoveInternals(aLSUnify[iType], aLSN, aKeepMap[iType])) bChanged = Standard_True; // add shapes to result ([unified] edges or faces) - for (BOPCol_ListIteratorOfListOfShape aItLS(aLSN); aItLS.More(); aItLS.Next()) { + for (TopTools_ListIteratorOfListOfShape aItLS(aLSN); aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aS = aItLS.Value(); aBB.Add(aResult, aS); } @@ -611,24 +611,24 @@ void BOPAlgo_CellsBuilder::RemoveInternalBoundaries() //function : FindPart //purpose : //======================================================================= -void BOPAlgo_CellsBuilder::FindParts(const BOPCol_ListOfShape& theLSToTake, - const BOPCol_ListOfShape& theLSToAvoid, - BOPCol_ListOfShape& theParts) +void BOPAlgo_CellsBuilder::FindParts(const TopTools_ListOfShape& theLSToTake, + const TopTools_ListOfShape& theLSToAvoid, + TopTools_ListOfShape& theParts) { if (theLSToTake.IsEmpty()) { return; } // // map shapes to avoid - BOPCol_MapOfShape aMSToAvoid; - BOPCol_ListIteratorOfListOfShape aItArgs(theLSToAvoid); + TopTools_MapOfShape aMSToAvoid; + TopTools_ListIteratorOfListOfShape aItArgs(theLSToAvoid); for (; aItArgs.More(); aItArgs.Next()) { const TopoDS_Shape& aS = aItArgs.Value(); aMSToAvoid.Add(aS); } // // map shapes to be taken - BOPCol_MapOfShape aMSToTake; + TopTools_MapOfShape aMSToTake; aItArgs.Initialize(theLSToTake); for (; aItArgs.More(); aItArgs.Next()) { const TopoDS_Shape& aS = aItArgs.Value(); @@ -659,14 +659,14 @@ void BOPAlgo_CellsBuilder::FindParts(const BOPCol_ListOfShape& theLSToTake, for (; aExp.More(); aExp.Next()) { const TopoDS_Shape& aST = aExp.Current(); // get split parts of the shape - BOPCol_ListOfShape aLSTIm; + TopTools_ListOfShape aLSTIm; if (!myImages.IsBound(aST)) { aLSTIm.Append(aST); } else { aLSTIm = myImages.Find(aST); } // - BOPCol_ListIteratorOfListOfShape aItIm(aLSTIm); + TopTools_ListIteratorOfListOfShape aItIm(aLSTIm); for (; aItIm.More(); aItIm.Next()) { const TopoDS_Shape& aPart = aItIm.Value(); // @@ -675,13 +675,13 @@ void BOPAlgo_CellsBuilder::FindParts(const BOPCol_ListOfShape& theLSToTake, } // // get input shapes in which the split part is contained - const BOPCol_ListOfShape& aLS = myIndex.FindFromKey(aPart); + const TopTools_ListOfShape& aLS = myIndex.FindFromKey(aPart); if (aLS.Extent() < aNbS) { continue; } // // check that input shapes containing the part should not be avoided - BOPCol_MapOfShape aMS; + TopTools_MapOfShape aMS; aItArgs.Initialize(aLS); for (; aItArgs.More(); aItArgs.Next()) { const TopoDS_Shape& aS = aItArgs.Value(); @@ -721,7 +721,7 @@ void BOPAlgo_CellsBuilder::MakeContainers() aBB.MakeCompound(aResult); // // basic elements of type EDGE, FACE and SOLID added into result - BOPCol_ListOfShape aLS[3]; + TopTools_ListOfShape aLS[3]; // TopoDS_Iterator aIt(myShape); for (; aIt.More(); aIt.Next()) { @@ -743,7 +743,7 @@ void BOPAlgo_CellsBuilder::MakeContainers() // TopoDS_Compound aC; aBB.MakeCompound(aC); - BOPCol_ListIteratorOfListOfShape aItLS(aLS[i]); + TopTools_ListIteratorOfListOfShape aItLS(aLS[i]); for (; aItLS.More(); aItLS.Next()) { aBB.Add(aC, aItLS.Value()); } @@ -757,8 +757,8 @@ void BOPAlgo_CellsBuilder::MakeContainers() //function : RemoveInternals //purpose : //======================================================================= -Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& theLS, - BOPCol_ListOfShape& theLSNew, +Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const TopTools_ListOfShape& theLS, + TopTools_ListOfShape& theLSNew, const TopTools_MapOfShape& theMapKeepBnd) { Standard_Boolean bRemoved = Standard_False; @@ -779,7 +779,7 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& BOPTools_AlgoTools::MakeContainer ((aType == TopAbs_FACE) ? TopAbs_SHELL : TopAbs_WIRE, aShape); // - for (BOPCol_ListIteratorOfListOfShape aIt(theLS); aIt.More(); aIt.Next()) { + for (TopTools_ListIteratorOfListOfShape aIt(theLS); aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); aBB.Add(aShape, aS); } @@ -812,12 +812,12 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& } // // fill map of modified shapes - BOPCol_IndexedMapOfShape aMG; + TopTools_IndexedMapOfShape aMG; Standard_Integer i, aNb; // - BOPTools::MapShapes(aShape, TopAbs_VERTEX, aMG); - BOPTools::MapShapes(aShape, TopAbs_EDGE, aMG); - BOPTools::MapShapes(aShape, TopAbs_FACE, aMG); + TopExp::MapShapes(aShape, TopAbs_VERTEX, aMG); + TopExp::MapShapes(aShape, TopAbs_EDGE, aMG); + TopExp::MapShapes(aShape, TopAbs_FACE, aMG); // aNb = aMG.Extent(); for (i = 1; i <= aNb; ++i) { @@ -839,7 +839,7 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& TopoDS_Compound aSolids; aBB.MakeCompound(aSolids); // - BOPCol_ListIteratorOfListOfShape aItLS(theLS); + TopTools_ListIteratorOfListOfShape aItLS(theLS); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aSol = aItLS.Value(); aBB.Add(aSolids, aSol); @@ -847,18 +847,18 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& // // Make connexity blocks of solids to create from each isolated block one solid. // It will allow attaching internal entities of the solids to new solid. - BOPCol_ListOfShape aLCB; + TopTools_ListOfShape aLCB; BOPTools_AlgoTools::MakeConnexityBlocks(aSolids, TopAbs_FACE, TopAbs_SOLID, aLCB); // // for each block remove internal faces - BOPCol_ListIteratorOfListOfShape aItLCB(aLCB); + TopTools_ListIteratorOfListOfShape aItLCB(aLCB); for (; aItLCB.More(); aItLCB.Next()) { const TopoDS_Shape& aCB = aItLCB.Value(); // // Map faces and solids to find boundary faces that can be removed - BOPCol_IndexedDataMapOfShapeListOfShape aDMFS; + TopTools_IndexedDataMapOfShapeListOfShape aDMFS; // internal entities - BOPCol_ListOfShape aLSInt; + TopTools_ListOfShape aLSInt; // TopoDS_Iterator aItS(aCB); for (; aItS.More(); aItS.Next()) { @@ -874,9 +874,9 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& TopoDS_Iterator aItF(aSI); for (; aItF.More(); aItF.Next()) { const TopoDS_Shape& aF = aItF.Value(); - BOPCol_ListOfShape *pLSols = aDMFS.ChangeSeek(aF); + TopTools_ListOfShape *pLSols = aDMFS.ChangeSeek(aF); if (!pLSols) { - pLSols = &aDMFS(aDMFS.Add(aF, BOPCol_ListOfShape())); + pLSols = &aDMFS(aDMFS.Add(aF, TopTools_ListOfShape())); } pLSols->Append(aSol); } @@ -885,7 +885,7 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& } // // to build unified solid, select only faces attached to only one solid - BOPCol_ListOfShape aLFUnique; + TopTools_ListOfShape aLFUnique; Standard_Integer i, aNb = aDMFS.Extent(); for (i = 1; i <= aNb; ++i) { if (aDMFS(i).Extent() == 1) { @@ -912,7 +912,7 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& { TopoDS_Compound aUniqeFaces; aBB.MakeCompound(aUniqeFaces); - BOPCol_ListIteratorOfListOfShape aItLFUniqe(aLFUnique); + TopTools_ListIteratorOfListOfShape aItLFUniqe(aLFUnique); for (; aItLFUniqe.More(); aItLFUniqe.Next()) { aBB.Add(aUniqeFaces, aItLFUniqe.Value()); } @@ -931,7 +931,7 @@ Standard_Boolean BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape& // // put all internal parts into new solid aSNew.Free(Standard_True); - BOPCol_ListIteratorOfListOfShape aItLSI(aLSInt); + TopTools_ListIteratorOfListOfShape aItLSI(aLSInt); for (; aItLSI.More(); aItLSI.Next()) { aBB.Add(aSNew, aItLSI.Value()); } @@ -979,8 +979,8 @@ Standard_Boolean BOPAlgo_CellsBuilder::IsDeleted(const TopoDS_Shape& theS) } // if (bHasImage) { - const BOPCol_ListOfShape& aLSp = myImages.Find(theS); - BOPCol_ListIteratorOfListOfShape aIt(aLSp); + const TopTools_ListOfShape& aLSp = myImages.Find(theS); + TopTools_ListIteratorOfListOfShape aIt(aLSp); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSp = aIt.Value(); const TopoDS_Shape& aSpR = myShapesSD.IsBound(aSp) ? @@ -1028,9 +1028,9 @@ const TopTools_ListOfShape& BOPAlgo_CellsBuilder::Modified(const TopoDS_Shape& t return myHistShapes; } // - BOPCol_MapOfShape aMFence; - const BOPCol_ListOfShape& aLSp = myImages.Find(theS); - BOPCol_ListIteratorOfListOfShape aIt(aLSp); + TopTools_MapOfShape aMFence; + const TopTools_ListOfShape& aLSp = myImages.Find(theS); + TopTools_ListIteratorOfListOfShape aIt(aLSp); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape aSp = aIt.Value(); const TopoDS_Shape& aSpR = myShapesSD.IsBound(aSp) ? @@ -1083,7 +1083,7 @@ void MakeTypedContainers(const TopoDS_Shape& theSC, return; } // - BOPCol_ListOfShape aLCB; + TopTools_ListOfShape aLCB; BOPTools_AlgoTools::MakeConnexityBlocks(theSC, aConnexityType, aPartType, aLCB); if (aLCB.IsEmpty()) { return; @@ -1091,7 +1091,7 @@ void MakeTypedContainers(const TopoDS_Shape& theSC, // BRep_Builder aBB; TopExp_Explorer aExp; - BOPCol_ListIteratorOfListOfShape aItCB; + TopTools_ListIteratorOfListOfShape aItCB; // aItCB.Initialize(aLCB); for (; aItCB.More(); aItCB.Next()) { @@ -1117,13 +1117,13 @@ void MakeTypedContainers(const TopoDS_Shape& theSC, //function : CollectMaterialBoundaries //purpose : Add to theMapKeepBnd the boundary shapes of the area defined by shapes from the list //======================================================================= -static void CollectMaterialBoundaries(const BOPCol_ListOfShape& theLS, +static void CollectMaterialBoundaries(const TopTools_ListOfShape& theLS, TopTools_MapOfShape& theMapKeepBnd) { TopAbs_ShapeEnum aType = theLS.First().ShapeType(); TopAbs_ShapeEnum aTypeSubsh = (aType == TopAbs_FACE ? TopAbs_EDGE : TopAbs_VERTEX); TopTools_IndexedDataMapOfShapeListOfShape aMapSubSh; - BOPCol_ListIteratorOfListOfShape anIt(theLS); + TopTools_ListIteratorOfListOfShape anIt(theLS); for (; anIt.More(); anIt.Next()) { const TopoDS_Shape& aS = anIt.Value(); diff --git a/src/BOPAlgo/BOPAlgo_CellsBuilder.hxx b/src/BOPAlgo/BOPAlgo_CellsBuilder.hxx index 316d6d9ce1..d7450b093f 100644 --- a/src/BOPAlgo/BOPAlgo_CellsBuilder.hxx +++ b/src/BOPAlgo/BOPAlgo_CellsBuilder.hxx @@ -26,11 +26,11 @@ #include #include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include //! //! The algorithm is based on the General Fuse algorithm (GFA). The result of @@ -112,7 +112,7 @@ //! Examples:
//! 1. API
//! BOPAlgo_CellsBuilder aCBuilder;
-//! BOPCol_ListOfShape aLS = ...; // arguments
+//! TopTools_ListOfShape aLS = ...; // arguments
//! /* parallel or single mode (the default value is FALSE)*/
//! Standard_Boolean bRunParallel = Standard_False;
//! /* fuzzy option (default value is 0)*/
@@ -131,8 +131,8 @@ //! /* all split parts */
//! const TopoDS_Shape& aRes = aCBuilder.GetAllParts();
//! //
-//! BOPCol_ListOfShape aLSToTake = ...; // parts of these arguments will be taken into result
-//! BOPCol_ListOfShape aLSToAvoid = ...; // parts of these arguments will not be taken into result
+//! TopTools_ListOfShape aLSToTake = ...; // parts of these arguments will be taken into result
+//! TopTools_ListOfShape aLSToAvoid = ...; // parts of these arguments will not be taken into result
//! //
//! /* defines the material common for the cells, i.e. //! the boundaries between cells with the same material @@ -202,8 +202,8 @@ class BOPAlgo_CellsBuilder : public BOPAlgo_Builder //! cells with the same material will be removed. Default value is 0.
//! Thus, to remove any boundary the value of this variable should not be equal to 0.
//! parameter defines whether to remove boundaries now or not. - Standard_EXPORT void AddToResult(const BOPCol_ListOfShape& theLSToTake, - const BOPCol_ListOfShape& theLSToAvoid, + Standard_EXPORT void AddToResult(const TopTools_ListOfShape& theLSToTake, + const TopTools_ListOfShape& theLSToAvoid, const Standard_Integer theMaterial = 0, const Standard_Boolean theUpdate = Standard_False); @@ -219,8 +219,8 @@ class BOPAlgo_CellsBuilder : public BOPAlgo_Builder //! defines the arguments which parts should not be removed from result.
//! To be removed from the result the part must be IN for all shapes from the list //! and must be OUT of all shapes from the list . - Standard_EXPORT void RemoveFromResult(const BOPCol_ListOfShape& theLSToTake, - const BOPCol_ListOfShape& theLSToAvoid); + Standard_EXPORT void RemoveFromResult(const TopTools_ListOfShape& theLSToTake, + const TopTools_ListOfShape& theLSToAvoid); //! Remove all parts from result. Standard_EXPORT void RemoveAllFromResult(); @@ -258,22 +258,22 @@ class BOPAlgo_CellsBuilder : public BOPAlgo_Builder Standard_EXPORT void IndexParts(); //! Looking for the parts defined by two lists. - Standard_EXPORT void FindParts(const BOPCol_ListOfShape& theLSToTake, - const BOPCol_ListOfShape& theLSToAvoid, - BOPCol_ListOfShape& theParts); + Standard_EXPORT void FindParts(const TopTools_ListOfShape& theLSToTake, + const TopTools_ListOfShape& theLSToAvoid, + TopTools_ListOfShape& theParts); //! Removes internal boundaries between cells with the same material.
//! Returns TRUE if any internal boundaries have been removed. - Standard_EXPORT Standard_Boolean RemoveInternals(const BOPCol_ListOfShape& theLS, - BOPCol_ListOfShape& theLSNew, + Standard_EXPORT Standard_Boolean RemoveInternals(const TopTools_ListOfShape& theLS, + TopTools_ListOfShape& theLSNew, const TopTools_MapOfShape& theMapKeepBnd = TopTools_MapOfShape()); // fields TopoDS_Shape myAllParts; - BOPCol_IndexedDataMapOfShapeListOfShape myIndex; - BOPCol_DataMapOfIntegerListOfShape myMaterials; - BOPCol_DataMapOfShapeInteger myShapeMaterial; - BOPCol_DataMapOfShapeShape myMapModified; + TopTools_IndexedDataMapOfShapeListOfShape myIndex; + TopTools_DataMapOfIntegerListOfShape myMaterials; + TopTools_DataMapOfShapeInteger myShapeMaterial; + TopTools_DataMapOfShapeShape myMapModified; }; #endif //_BOPAlgo_CellsBuilder_HeaderFile diff --git a/src/BOPAlgo/BOPAlgo_CheckResult.cxx b/src/BOPAlgo/BOPAlgo_CheckResult.cxx index 767b1b384c..43f13845a0 100644 --- a/src/BOPAlgo/BOPAlgo_CheckResult.cxx +++ b/src/BOPAlgo/BOPAlgo_CheckResult.cxx @@ -61,12 +61,12 @@ const TopoDS_Shape & BOPAlgo_CheckResult::GetShape2() const return myShape2; } -const BOPCol_ListOfShape& BOPAlgo_CheckResult::GetFaultyShapes1() const +const TopTools_ListOfShape& BOPAlgo_CheckResult::GetFaultyShapes1() const { return myFaulty1; } -const BOPCol_ListOfShape& BOPAlgo_CheckResult::GetFaultyShapes2() const +const TopTools_ListOfShape& BOPAlgo_CheckResult::GetFaultyShapes2() const { return myFaulty2; } diff --git a/src/BOPAlgo/BOPAlgo_CheckResult.hxx b/src/BOPAlgo/BOPAlgo_CheckResult.hxx index 16a1c0cd5c..3e2a6d051b 100644 --- a/src/BOPAlgo/BOPAlgo_CheckResult.hxx +++ b/src/BOPAlgo/BOPAlgo_CheckResult.hxx @@ -22,7 +22,7 @@ #include #include -#include +#include #include class TopoDS_Shape; @@ -58,10 +58,10 @@ public: Standard_EXPORT const TopoDS_Shape& GetShape2() const; //! returns list of faulty shapes for object - Standard_EXPORT const BOPCol_ListOfShape& GetFaultyShapes1() const; + Standard_EXPORT const TopTools_ListOfShape& GetFaultyShapes1() const; //! returns list of faulty shapes for tool - Standard_EXPORT const BOPCol_ListOfShape& GetFaultyShapes2() const; + Standard_EXPORT const TopTools_ListOfShape& GetFaultyShapes2() const; //! set status of faulty Standard_EXPORT void SetCheckStatus (const BOPAlgo_CheckStatus TheStatus); @@ -109,8 +109,8 @@ private: TopoDS_Shape myShape1; TopoDS_Shape myShape2; BOPAlgo_CheckStatus myStatus; - BOPCol_ListOfShape myFaulty1; - BOPCol_ListOfShape myFaulty2; + TopTools_ListOfShape myFaulty1; + TopTools_ListOfShape myFaulty2; Standard_Real myMaxDist1; Standard_Real myMaxDist2; Standard_Real myMaxPar1; diff --git a/src/BOPAlgo/BOPAlgo_CheckerSI.cxx b/src/BOPAlgo/BOPAlgo_CheckerSI.cxx index 35dfe50e7b..637060773b 100644 --- a/src/BOPAlgo/BOPAlgo_CheckerSI.cxx +++ b/src/BOPAlgo/BOPAlgo_CheckerSI.cxx @@ -19,8 +19,6 @@ #include #include -#include -#include #include #include #include @@ -32,8 +30,11 @@ #include #include #include -#include +#include +#include +#include #include +#include #include #include #include @@ -41,8 +42,7 @@ #include #include #include -#include -#include +#include //======================================================================= //class : BOPAlgo_FaceSelfIntersect @@ -102,14 +102,14 @@ class BOPAlgo_FaceSelfIntersect : //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfFaceSelfIntersect; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_FaceSelfIntersectFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_FaceSelfIntersectCnt; @@ -224,7 +224,7 @@ void BOPAlgo_CheckerSI::PostTreat() // 0 BOPDS_VectorOfInterfVV& aVVs=myDS->InterfVV(); - aNb=aVVs.Extent(); + aNb=aVVs.Length(); for (i=0; i!=aNb; ++i) { const BOPDS_InterfVV& aVV=aVVs(i); aVV.Indices(n1, n2); @@ -237,7 +237,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 1 BOPDS_VectorOfInterfVE& aVEs=myDS->InterfVE(); - aNb=aVEs.Extent(); + aNb=aVEs.Length(); for (i=0; i!=aNb; ++i) { const BOPDS_InterfVE& aVE=aVEs(i); aVE.Indices(n1, n2); @@ -250,7 +250,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 2 BOPDS_VectorOfInterfEE& aEEs=myDS->InterfEE(); - aNb=aEEs.Extent(); + aNb=aEEs.Length(); for (i=0; i!=aNb; ++i) { const BOPDS_InterfEE& aEE=aEEs(i); aEE.Indices(n1, n2); @@ -263,7 +263,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 3 BOPDS_VectorOfInterfVF& aVFs=myDS->InterfVF(); - aNb=aVFs.Extent(); + aNb=aVFs.Length(); for (i=0; i!=aNb; ++i) { const BOPDS_InterfVF& aVF=aVFs(i); aVF.Indices(n1, n2); @@ -276,7 +276,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 4 BOPDS_VectorOfInterfEF& aEFs=myDS->InterfEF(); - aNb=aEFs.Extent(); + aNb=aEFs.Length(); for (i=0; i!=aNb; ++i) { const BOPDS_InterfEF& aEF=aEFs(i); if (aEF.CommonPart().Type()==TopAbs_SHAPE) { @@ -292,7 +292,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 5 BOPDS_VectorOfInterfFF& aFFs=myDS->InterfFF(); - aNb=aFFs.Extent(); + aNb=aFFs.Length(); for (i=0; i!=aNb; ++i) { Standard_Boolean bTangentFaces, bFlag; Standard_Integer aNbC, aNbP, j, iFound; @@ -301,9 +301,9 @@ void BOPAlgo_CheckerSI::PostTreat() aFF.Indices(n1, n2); // bTangentFaces=aFF.TangentFaces(); - aNbP=aFF.Points().Extent(); + aNbP=aFF.Points().Length(); const BOPDS_VectorOfCurve& aVC=aFF.Curves(); - aNbC=aVC.Extent(); + aNbC=aVC.Length(); if (!aNbP && !aNbC && !bTangentFaces) { continue; } @@ -344,7 +344,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 6 BOPDS_VectorOfInterfVZ& aVZs=myDS->InterfVZ(); - aNb=aVZs.Extent(); + aNb=aVZs.Length(); for (i=0; i!=aNb; ++i) { // const BOPDS_InterfVZ& aVZ=aVZs(i); @@ -358,7 +358,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 7 BOPDS_VectorOfInterfEZ& aEZs=myDS->InterfEZ(); - aNb=aEZs.Extent(); + aNb=aEZs.Length(); for (i=0; i!=aNb; ++i) { // const BOPDS_InterfEZ& aEZ=aEZs(i); @@ -369,7 +369,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 8 BOPDS_VectorOfInterfFZ& aFZs=myDS->InterfFZ(); - aNb=aFZs.Extent(); + aNb=aFZs.Length(); for (i=0; i!=aNb; ++i) { // const BOPDS_InterfFZ& aFZ=aFZs(i); @@ -380,7 +380,7 @@ void BOPAlgo_CheckerSI::PostTreat() // // 9 BOPDS_VectorOfInterfZZ& aZZs=myDS->InterfZZ(); - aNb=aZZs.Extent(); + aNb=aZZs.Length(); for (i=0; i!=aNb; ++i) { // const BOPDS_InterfZZ& aZZ=aZZs(i); @@ -436,7 +436,7 @@ void BOPAlgo_CheckerSI::CheckFaceSelfIntersection() Standard_Real aTolF = BRep_Tool::Tolerance(aF); - BOPAlgo_FaceSelfIntersect& aFaceSelfIntersect = aVFace.Append1(); + BOPAlgo_FaceSelfIntersect& aFaceSelfIntersect = aVFace.Appended(); // aFaceSelfIntersect.SetIndex(i); aFaceSelfIntersect.SetFace(aF); @@ -445,7 +445,7 @@ void BOPAlgo_CheckerSI::CheckFaceSelfIntersection() aFaceSelfIntersect.SetProgressIndicator(myProgressIndicator); } - Standard_Integer aNbFace = aVFace.Extent(); + Standard_Integer aNbFace = aVFace.Length(); //====================================================== BOPAlgo_FaceSelfIntersectCnt::Perform(myRunParallel, aVFace); //====================================================== diff --git a/src/BOPAlgo/BOPAlgo_CheckerSI_1.cxx b/src/BOPAlgo/BOPAlgo_CheckerSI_1.cxx index 469c48f45e..edac5d9cf8 100644 --- a/src/BOPAlgo/BOPAlgo_CheckerSI_1.cxx +++ b/src/BOPAlgo/BOPAlgo_CheckerSI_1.cxx @@ -21,8 +21,7 @@ #include #include -#include -#include +#include #include #include @@ -30,8 +29,10 @@ #include #include -#include + +#include #include +#include #include #include @@ -114,16 +115,16 @@ class BOPAlgo_VertexSolid { Handle(IntTools_Context) myContext; }; //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfVertexSolid; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_VertexSolidFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_VertexSolidCnt; @@ -184,14 +185,14 @@ class BOPAlgo_ShapeSolid { BOPDS_DS* myDS; }; //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfShapeSolid; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_ShapeSolidFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_ShapeSolidCnt; // @@ -224,14 +225,14 @@ class BOPAlgo_SolidSolid : public BOPAlgo_ShapeSolid { }; }; //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfSolidSolid; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_SolidSolidFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_SolidSolidCnt; // @@ -277,13 +278,13 @@ void BOPAlgo_CheckerSI::PerformVZ() const TopoDS_Vertex& aV=*((TopoDS_Vertex*)&myDS->Shape(nVSD)); const TopoDS_Solid& aZ=*((TopoDS_Solid*)&myDS->Shape(nZ)); // - BOPAlgo_VertexSolid& aVertexSolid=aVVS.Append1(); + BOPAlgo_VertexSolid& aVertexSolid=aVVS.Appended(); aVertexSolid.SetIndices(nV, nZ); aVertexSolid.SetVertex(aV); aVertexSolid.SetSolid(aZ); } // - aNbVVS=aVVS.Extent(); + aNbVVS=aVVS.Length(); //============================================================= BOPAlgo_VertexSolidCnt::Perform(myRunParallel, aVVS, myContext); //============================================================= @@ -293,7 +294,7 @@ void BOPAlgo_CheckerSI::PerformVZ() if (aState==TopAbs_IN) { aVertexSolid.Indices(nV, nZ); // - BOPDS_InterfVZ& aVZ=aVZs.Append1(); + BOPDS_InterfVZ& aVZ=aVZs.Appended(); aVZ.SetIndices(nV, nZ); // myDS->AddInterf(nV, nZ); @@ -336,12 +337,12 @@ void BOPAlgo_CheckerSI::PerformZZ() for (; myIterator->More(); myIterator->Next()) { myIterator->Value(nZ1, nZ); // - BOPAlgo_SolidSolid& aSolidSolid=aVSolidSolid.Append1(); + BOPAlgo_SolidSolid& aSolidSolid=aVSolidSolid.Appended(); aSolidSolid.SetIndices(nZ1, nZ); aSolidSolid.SetDS(myDS); } // - aNbSolidSolid=aVSolidSolid.Extent(); + aNbSolidSolid=aVSolidSolid.Length(); //====================================================== BOPAlgo_SolidSolidCnt::Perform(myRunParallel, aVSolidSolid); //====================================================== @@ -356,7 +357,7 @@ void BOPAlgo_CheckerSI::PerformZZ() if (bHasInterf) { aSolidSolid.Indices(nZ1, nZ); // - BOPDS_InterfZZ& aZZ=aZZs.Append1(); + BOPDS_InterfZZ& aZZ=aZZs.Appended(); aZZ.SetIndices(nZ1, nZ); // myDS->AddInterf(nZ1, nZ); @@ -383,12 +384,12 @@ void BOPAlgo_CheckerSI::PerformSZ(const TopAbs_ShapeEnum aTS) for (; myIterator->More(); myIterator->Next()) { myIterator->Value(nS, nZ); // - BOPAlgo_ShapeSolid& aShapeSolid=aVShapeSolid.Append1(); + BOPAlgo_ShapeSolid& aShapeSolid=aVShapeSolid.Appended(); aShapeSolid.SetIndices(nS, nZ); aShapeSolid.SetDS(myDS); } // - aNbShapeSolid=aVShapeSolid.Extent(); + aNbShapeSolid=aVShapeSolid.Length(); //====================================================== BOPAlgo_ShapeSolidCnt::Perform(myRunParallel, aVShapeSolid); //====================================================== @@ -410,11 +411,11 @@ void BOPAlgo_CheckerSI::PerformSZ(const TopAbs_ShapeEnum aTS) aShapeSolid.Indices(nS, nZ); // if (aTS==TopAbs_EDGE) { - BOPDS_InterfEZ& aEZ=aEZs.Append1(); + BOPDS_InterfEZ& aEZ=aEZs.Appended(); aEZ.SetIndices(nS, nZ); } else {//if (aTS==TopAbs_FACE) - BOPDS_InterfFZ& aFZ=aFZs.Append1(); + BOPDS_InterfFZ& aFZ=aFZs.Appended(); aFZ.SetIndices(nS, nZ); } // diff --git a/src/BOPAlgo/BOPAlgo_MakerVolume.cxx b/src/BOPAlgo/BOPAlgo_MakerVolume.cxx index 2a7afbcbc9..c4ead83d1b 100644 --- a/src/BOPAlgo/BOPAlgo_MakerVolume.cxx +++ b/src/BOPAlgo/BOPAlgo_MakerVolume.cxx @@ -18,18 +18,17 @@ #include #include #include -#include -#include #include -#include #include #include +#include #include #include +#include static void AddFace(const TopoDS_Shape& theF, - BOPCol_ListOfShape& theLF); + TopTools_ListOfShape& theLF); //======================================================================= //function : CheckData @@ -69,8 +68,8 @@ void BOPAlgo_MakerVolume::Perform() //to create the compound of them and use it as one argument TopoDS_Compound anArgs; BRep_Builder aBB; - BOPCol_ListIteratorOfListOfShape aIt; - BOPCol_ListOfShape aLS; + TopTools_ListIteratorOfListOfShape aIt; + TopTools_ListOfShape aLS; // aBB.MakeCompound(anArgs); aIt.Initialize(myArguments); @@ -150,8 +149,8 @@ void BOPAlgo_MakerVolume::PerformInternal1 return; } // - BOPCol_MapOfShape aBoxFaces; - BOPCol_ListOfShape aLSR; + TopTools_MapOfShape aBoxFaces; + TopTools_ListOfShape aLSR; // // 5. Create bounding box MakeBox(aBoxFaces); @@ -187,8 +186,8 @@ void BOPAlgo_MakerVolume::CollectFaces() UserBreak(); // Standard_Integer i, aNbShapes; - BOPCol_ListIteratorOfListOfShape aIt; - BOPCol_MapOfShape aMFence; + TopTools_ListIteratorOfListOfShape aIt; + TopTools_MapOfShape aMFence; // aNbShapes = myDS->NbSourceShapes(); for (i = 0; i < aNbShapes; ++i) { @@ -202,7 +201,7 @@ void BOPAlgo_MakerVolume::CollectFaces() // const TopoDS_Shape& aF = aSI.Shape(); if (myImages.IsBound(aF)) { - const BOPCol_ListOfShape& aLFIm = myImages.Find(aF); + const TopTools_ListOfShape& aLFIm = myImages.Find(aF); aIt.Initialize(aLFIm); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aFIm = aIt.Value(); @@ -221,7 +220,7 @@ void BOPAlgo_MakerVolume::CollectFaces() //function : MakeBox //purpose : //======================================================================= -void BOPAlgo_MakerVolume::MakeBox(BOPCol_MapOfShape& theBoxFaces) +void BOPAlgo_MakerVolume::MakeBox(TopTools_MapOfShape& theBoxFaces) { UserBreak(); // @@ -248,7 +247,7 @@ void BOPAlgo_MakerVolume::MakeBox(BOPCol_MapOfShape& theBoxFaces) //function : BuildSolids //purpose : //======================================================================= -void BOPAlgo_MakerVolume::BuildSolids(BOPCol_ListOfShape& theLSR) +void BOPAlgo_MakerVolume::BuildSolids(TopTools_ListOfShape& theLSR) { UserBreak(); // @@ -272,12 +271,12 @@ void BOPAlgo_MakerVolume::BuildSolids(BOPCol_ListOfShape& theLSR) //function : TreatResult //purpose : //======================================================================= -void BOPAlgo_MakerVolume::RemoveBox(BOPCol_ListOfShape& theLSR, - const BOPCol_MapOfShape& theBoxFaces) +void BOPAlgo_MakerVolume::RemoveBox(TopTools_ListOfShape& theLSR, + const TopTools_MapOfShape& theBoxFaces) { UserBreak(); // - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; TopExp_Explorer aExp; Standard_Boolean bFound; // @@ -305,14 +304,14 @@ void BOPAlgo_MakerVolume::RemoveBox(BOPCol_ListOfShape& theLSR, //function : BuildShape //purpose : //======================================================================= -void BOPAlgo_MakerVolume::BuildShape(const BOPCol_ListOfShape& theLSR) +void BOPAlgo_MakerVolume::BuildShape(const TopTools_ListOfShape& theLSR) { if (theLSR.Extent() == 1) { myShape = theLSR.First(); } else { BRep_Builder aBB; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aIt.Initialize(theLSR); for (; aIt.More(); aIt.Next()) { @@ -326,7 +325,7 @@ void BOPAlgo_MakerVolume::BuildShape(const BOPCol_ListOfShape& theLSR) //function : FillInternalShapes //purpose : //======================================================================= -void BOPAlgo_MakerVolume::FillInternalShapes(const BOPCol_ListOfShape& theLSR) +void BOPAlgo_MakerVolume::FillInternalShapes(const TopTools_ListOfShape& theLSR) { if (myAvoidInternalShapes) { return; @@ -339,13 +338,13 @@ void BOPAlgo_MakerVolume::FillInternalShapes(const BOPCol_ListOfShape& theLSR) TopAbs_State aState; TopoDS_Iterator aItS; BRep_Builder aBB; - BOPCol_MapOfShape aMFence; - BOPCol_IndexedMapOfShape aMSS; - BOPCol_ListOfShape aLVE, aLSC, aLSIn; - BOPCol_ListIteratorOfListOfShape aIt, aIt1; + TopTools_MapOfShape aMFence; + TopTools_IndexedMapOfShape aMSS; + TopTools_ListOfShape aLVE, aLSC, aLSIn; + TopTools_ListIteratorOfListOfShape aIt, aIt1; // // 1. Collect shapes to process: vertices, edges, wires - const BOPCol_ListOfShape& anArguments = myDS->Arguments(); + const TopTools_ListOfShape& anArguments = myDS->Arguments(); aIt.Initialize(anArguments); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); @@ -373,15 +372,15 @@ void BOPAlgo_MakerVolume::FillInternalShapes(const BOPCol_ListOfShape& theLSR) aIt.Initialize(theLSR); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); - BOPTools::MapShapes(aS, TopAbs_EDGE, aMSS); - BOPTools::MapShapes(aS, TopAbs_VERTEX, aMSS); + TopExp::MapShapes(aS, TopAbs_EDGE, aMSS); + TopExp::MapShapes(aS, TopAbs_VERTEX, aMSS); } // aIt.Initialize(aLVE); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); if (myImages.IsBound(aS)) { - const BOPCol_ListOfShape &aLSp = myImages.Find(aS); + const TopTools_ListOfShape &aLSp = myImages.Find(aS); aIt1.Initialize(aLSp); for (; aIt1.More(); aIt1.Next()) { const TopoDS_Shape& aSp = aIt1.Value(); @@ -429,7 +428,7 @@ void BOPAlgo_MakerVolume::FillInternalShapes(const BOPCol_ListOfShape& theLSR) //purpose : //======================================================================= void AddFace(const TopoDS_Shape& theF, - BOPCol_ListOfShape& theLF) + TopTools_ListOfShape& theLF) { TopoDS_Shape aFF = theF; aFF.Orientation(TopAbs_FORWARD); diff --git a/src/BOPAlgo/BOPAlgo_MakerVolume.hxx b/src/BOPAlgo/BOPAlgo_MakerVolume.hxx index 9ad6924dc5..58c394642d 100644 --- a/src/BOPAlgo/BOPAlgo_MakerVolume.hxx +++ b/src/BOPAlgo/BOPAlgo_MakerVolume.hxx @@ -18,14 +18,14 @@ #include #include #include - #include -#include -#include -#include + #include -#include -#include +#include +#include +#include +#include +#include class TopoDS_Solid; class BOPAlgo_PaveFiller; @@ -120,7 +120,7 @@ public: virtual ~BOPAlgo_MakerVolume(); //! Empty contructor. - BOPAlgo_MakerVolume(const BOPCol_BaseAllocator& theAllocator); + BOPAlgo_MakerVolume(const Handle(NCollection_BaseAllocator)& theAllocator); //! Clears the data. virtual void Clear() Standard_OVERRIDE; @@ -137,7 +137,7 @@ public: const TopoDS_Solid& Box() const; //! Returns the processed faces . - const BOPCol_ListOfShape& Faces() const; + const TopTools_ListOfShape& Faces() const; //! Defines the preventing of addition of internal for solid parts into the result. //! By default the internal parts are added into result. @@ -165,25 +165,25 @@ protected: Standard_EXPORT void CollectFaces(); //! Makes solid box. - Standard_EXPORT void MakeBox (BOPCol_MapOfShape& theBoxFaces); + Standard_EXPORT void MakeBox (TopTools_MapOfShape& theBoxFaces); //! Builds solids. - Standard_EXPORT void BuildSolids (BOPCol_ListOfShape& theLSR); + Standard_EXPORT void BuildSolids (TopTools_ListOfShape& theLSR); //! Removes the covering box. - Standard_EXPORT void RemoveBox (BOPCol_ListOfShape& theLSR, const BOPCol_MapOfShape& theBoxFaces); + Standard_EXPORT void RemoveBox (TopTools_ListOfShape& theLSR, const TopTools_MapOfShape& theBoxFaces); //! Fills the solids with internal shapes. - Standard_EXPORT void FillInternalShapes (const BOPCol_ListOfShape& theLSR); + Standard_EXPORT void FillInternalShapes (const TopTools_ListOfShape& theLSR); //! Builds the result. - Standard_EXPORT void BuildShape (const BOPCol_ListOfShape& theLSR); + Standard_EXPORT void BuildShape (const TopTools_ListOfShape& theLSR); Standard_Boolean myIntersect; Bnd_Box myBBox; TopoDS_Solid mySBox; - BOPCol_ListOfShape myFaces; + TopTools_ListOfShape myFaces; Standard_Boolean myAvoidInternalShapes; private: diff --git a/src/BOPAlgo/BOPAlgo_MakerVolume.lxx b/src/BOPAlgo/BOPAlgo_MakerVolume.lxx index 47141ff7ed..4c0382b088 100644 --- a/src/BOPAlgo/BOPAlgo_MakerVolume.lxx +++ b/src/BOPAlgo/BOPAlgo_MakerVolume.lxx @@ -91,7 +91,7 @@ inline const TopoDS_Solid& BOPAlgo_MakerVolume::Box()const //function : Faces //purpose : //======================================================================= -inline const BOPCol_ListOfShape& BOPAlgo_MakerVolume::Faces()const +inline const TopTools_ListOfShape& BOPAlgo_MakerVolume::Faces()const { return myFaces; } diff --git a/src/BOPAlgo/BOPAlgo_Options.hxx b/src/BOPAlgo/BOPAlgo_Options.hxx index e10cf0e1ec..0d51bac207 100644 --- a/src/BOPAlgo/BOPAlgo_Options.hxx +++ b/src/BOPAlgo/BOPAlgo_Options.hxx @@ -18,7 +18,7 @@ #include #include -#include +#include class Message_ProgressIndicator; @@ -47,13 +47,13 @@ public: Standard_EXPORT BOPAlgo_Options(); //! Constructor with allocator - Standard_EXPORT BOPAlgo_Options(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_Options(const Handle(NCollection_BaseAllocator)& theAllocator); //! Destructor Standard_EXPORT virtual ~BOPAlgo_Options(); //! Returns allocator - const BOPCol_BaseAllocator& Allocator() const + const Handle(NCollection_BaseAllocator)& Allocator() const { return myAllocator; } @@ -184,7 +184,7 @@ protected: protected: - BOPCol_BaseAllocator myAllocator; + Handle(NCollection_BaseAllocator) myAllocator; Handle(Message_Report) myReport; Standard_Boolean myRunParallel; Standard_Real myFuzzyValue; diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller.cxx index 28bc7963a3..d990cfa146 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller.cxx @@ -172,7 +172,7 @@ void BOPAlgo_PaveFiller::SetSectionAttribute //function : SetArguments //purpose : //======================================================================= -void BOPAlgo_PaveFiller::SetArguments(const BOPCol_ListOfShape& theLS) +void BOPAlgo_PaveFiller::SetArguments(const TopTools_ListOfShape& theLS) { myArguments=theLS; } @@ -180,7 +180,7 @@ void BOPAlgo_PaveFiller::SetArguments(const BOPCol_ListOfShape& theLS) //function : Arguments //purpose : //======================================================================= -const BOPCol_ListOfShape& BOPAlgo_PaveFiller::Arguments()const +const TopTools_ListOfShape& BOPAlgo_PaveFiller::Arguments()const { return myArguments; } @@ -195,7 +195,7 @@ void BOPAlgo_PaveFiller::Init() return; } // - BOPCol_ListIteratorOfListOfShape aIt(myArguments); + TopTools_ListIteratorOfListOfShape aIt(myArguments); for (; aIt.More(); aIt.Next()) { if (aIt.Value().IsNull()) { AddError (new BOPAlgo_AlertNullInputShapes); diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.hxx b/src/BOPAlgo/BOPAlgo_PaveFiller.hxx index 545718e558..3eb8b817ae 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller.hxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller.hxx @@ -22,36 +22,35 @@ #include #include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include -#include -#include -#include -#include +#include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include class IntTools_Context; class BOPDS_DS; class BOPAlgo_SectionAttribute; @@ -118,7 +117,7 @@ public: Standard_EXPORT virtual ~BOPAlgo_PaveFiller(); - Standard_EXPORT BOPAlgo_PaveFiller(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_PaveFiller(const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT const BOPDS_DS& DS(); @@ -126,9 +125,9 @@ public: Standard_EXPORT const BOPDS_PIterator& Iterator(); - Standard_EXPORT void SetArguments (const BOPCol_ListOfShape& theLS); + Standard_EXPORT void SetArguments (const TopTools_ListOfShape& theLS); - Standard_EXPORT const BOPCol_ListOfShape& Arguments() const; + Standard_EXPORT const TopTools_ListOfShape& Arguments() const; Standard_EXPORT const Handle(IntTools_Context)& Context(); @@ -206,7 +205,7 @@ protected: //! into common table of interferences or not.
//! If some of the Pave Blocks are forming the Common Blocks, the splits //! of the Pave Blocks will also form a Common Block. - Standard_EXPORT void SplitPaveBlocks(const BOPCol_MapOfInteger& theMEdges, + Standard_EXPORT void SplitPaveBlocks(const TColStd_MapOfInteger& theMEdges, const Standard_Boolean theAddInterfs); Standard_EXPORT virtual void PerformVF(); @@ -219,8 +218,8 @@ protected: Standard_EXPORT void TreatVerticesEE(); - Standard_EXPORT void MakeSDVerticesFF(const BOPCol_DataMapOfIntegerListOfInteger& aDMVLV, - BOPCol_DataMapOfIntegerInteger& theDMNewSD); + Standard_EXPORT void MakeSDVerticesFF(const TColStd_DataMapOfIntegerListOfInteger& aDMVLV, + TColStd_DataMapOfIntegerInteger& theDMNewSD); Standard_EXPORT void MakeSplitEdges(); @@ -228,7 +227,7 @@ protected: Standard_EXPORT void MakePCurves(); - Standard_EXPORT Standard_Integer MakeSDVertices(const BOPCol_ListOfInteger& theVertIndices, + Standard_EXPORT Standard_Integer MakeSDVertices(const TColStd_ListOfInteger& theVertIndices, const Standard_Boolean theAddInterfs = 1); Standard_EXPORT void ProcessDE(); @@ -245,25 +244,25 @@ protected: //! Performs intersection of new vertices, obtained in E/E and E/F intersections Standard_EXPORT void PerformNewVertices(BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& theMVCPB, - const BOPCol_BaseAllocator& theAllocator, + const Handle(NCollection_BaseAllocator)& theAllocator, const Standard_Boolean theIsEEIntersection = Standard_True); - Standard_EXPORT Standard_Boolean CheckFacePaves (const TopoDS_Vertex& theVnew, const BOPCol_MapOfInteger& theMIF); + Standard_EXPORT Standard_Boolean CheckFacePaves (const TopoDS_Vertex& theVnew, const TColStd_MapOfInteger& theMIF); - Standard_EXPORT static Standard_Boolean CheckFacePaves (const Standard_Integer theN, const BOPCol_MapOfInteger& theMIFOn, const BOPCol_MapOfInteger& theMIFIn); + Standard_EXPORT static Standard_Boolean CheckFacePaves (const Standard_Integer theN, const TColStd_MapOfInteger& theMIFOn, const TColStd_MapOfInteger& theMIFIn); - Standard_EXPORT Standard_Boolean IsExistingVertex (const gp_Pnt& theP, const Standard_Real theTol, const BOPCol_MapOfInteger& theMVOn) const; + Standard_EXPORT Standard_Boolean IsExistingVertex (const gp_Pnt& theP, const Standard_Real theTol, const TColStd_MapOfInteger& theMVOn) const; //! Checks and puts paves from on the curve . - Standard_EXPORT void PutPavesOnCurve (const BOPCol_MapOfInteger& theMVOn, + Standard_EXPORT void PutPavesOnCurve (const TColStd_MapOfInteger& theMVOn, BOPDS_Curve& theNC, const Standard_Integer nF1, const Standard_Integer nF2, - const BOPCol_MapOfInteger& theMI, - const BOPCol_MapOfInteger& theMVEF, - BOPCol_DataMapOfIntegerReal& theMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV); + const TColStd_MapOfInteger& theMI, + const TColStd_MapOfInteger& theMVEF, + TColStd_DataMapOfIntegerReal& theMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV); Standard_EXPORT void FilterPavesOnCurves(const BOPDS_VectorOfCurve& theVNC); @@ -275,12 +274,12 @@ protected: //! 1 - checks only EE; //! 2 - checks only EF; //! other - checks both types of intersections. - Standard_EXPORT Standard_Boolean ExtendedTolerance (const Standard_Integer nV, const BOPCol_MapOfInteger& aMI, Standard_Real& aTolVExt, const Standard_Integer aType = 0); + Standard_EXPORT Standard_Boolean ExtendedTolerance (const Standard_Integer nV, const TColStd_MapOfInteger& aMI, Standard_Real& aTolVExt, const Standard_Integer aType = 0); Standard_EXPORT void PutBoundPaveOnCurve(const TopoDS_Face& theF1, const TopoDS_Face& theF2, BOPDS_Curve& theNC, - BOPCol_ListOfInteger& theLBV); + TColStd_ListOfInteger& theLBV); Standard_EXPORT Standard_Boolean IsExistingPaveBlock (const Handle(BOPDS_PaveBlock)& thePB, const BOPDS_Curve& theNC, @@ -288,16 +287,16 @@ protected: const BOPDS_MapOfPaveBlock& theMPBCommon, Handle(BOPDS_PaveBlock)& thePBOut, Standard_Real& theTolNew); - Standard_EXPORT Standard_Boolean IsExistingPaveBlock (const Handle(BOPDS_PaveBlock)& thePB, const BOPDS_Curve& theNC, const BOPCol_ListOfInteger& theLSE); + Standard_EXPORT Standard_Boolean IsExistingPaveBlock (const Handle(BOPDS_PaveBlock)& thePB, const BOPDS_Curve& theNC, const TColStd_ListOfInteger& theLSE); //! Treatment of section edges. Standard_EXPORT void PostTreatFF (BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& theMSCPB, BOPDS_DataMapOfPaveBlockListOfPaveBlock& theDMExEdges, - BOPCol_DataMapOfIntegerInteger& theDMNewSD, - const BOPCol_IndexedMapOfShape& theMicroEdges, - const BOPCol_IndexedMapOfShape& theVertsOnRejectedPB, - const BOPCol_BaseAllocator& theAllocator); + TColStd_DataMapOfIntegerInteger& theDMNewSD, + const TopTools_IndexedMapOfShape& theMicroEdges, + const TopTools_IndexedMapOfShape& theVertsOnRejectedPB, + const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT void FindPaveBlocks (const Standard_Integer theV, const Standard_Integer theF, BOPDS_ListOfPaveBlock& theLPB); @@ -310,38 +309,38 @@ protected: //! Checks and puts paves created in EF intersections on the curve . Standard_EXPORT void PutEFPavesOnCurve (BOPDS_Curve& theNC, - const BOPCol_MapOfInteger& theMI, - const BOPCol_MapOfInteger& theMVEF, - BOPCol_DataMapOfIntegerReal& theMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV); + const TColStd_MapOfInteger& theMI, + const TColStd_MapOfInteger& theMVEF, + TColStd_DataMapOfIntegerReal& theMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV); //! Puts stick paves on the curve Standard_EXPORT void PutStickPavesOnCurve (const TopoDS_Face& aF1, const TopoDS_Face& aF2, - const BOPCol_MapOfInteger& theMI, + const TColStd_MapOfInteger& theMI, BOPDS_Curve& theNC, - const BOPCol_MapOfInteger& theMVStick, - BOPCol_DataMapOfIntegerReal& theMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV); + const TColStd_MapOfInteger& theMVStick, + TColStd_DataMapOfIntegerReal& theMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV); //! Collects indices of vertices created in all intersections between //! two faces ( and ) to the map . //! Also, it collects indices of EF vertices to the map //! and indices of all subshapes of these two faces to the map. - Standard_EXPORT void GetStickVertices (const Standard_Integer nF1, const Standard_Integer nF2, BOPCol_MapOfInteger& theMVStick, BOPCol_MapOfInteger& theMVEF, BOPCol_MapOfInteger& theMI); + Standard_EXPORT void GetStickVertices (const Standard_Integer nF1, const Standard_Integer nF2, TColStd_MapOfInteger& theMVStick, TColStd_MapOfInteger& theMVEF, TColStd_MapOfInteger& theMI); //! Collects index nF and indices of all subshapes of the shape with index //! to the map . - Standard_EXPORT void GetFullShapeMap (const Standard_Integer nF, BOPCol_MapOfInteger& theMI); + Standard_EXPORT void GetFullShapeMap (const Standard_Integer nF, TColStd_MapOfInteger& theMI); //! Removes indices of vertices that are already on the //! curve from the map . //! It is used in PutEFPavesOnCurve and PutStickPavesOnCurve methods. - Standard_EXPORT void RemoveUsedVertices (BOPDS_Curve& theNC, BOPCol_MapOfInteger& theMV); + Standard_EXPORT void RemoveUsedVertices (BOPDS_Curve& theNC, TColStd_MapOfInteger& theMV); //! Puts the pave nV on the curve theNC. @@ -352,15 +351,15 @@ protected: Standard_EXPORT void PutPaveOnCurve (const Standard_Integer nV, const Standard_Real theTolR3D, const BOPDS_Curve& theNC, - const BOPCol_MapOfInteger& theMI, - BOPCol_DataMapOfIntegerReal& theMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV, + const TColStd_MapOfInteger& theMI, + TColStd_DataMapOfIntegerReal& theMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV, const Standard_Integer aType = 0); //! Adds the existing edges from the map which interfere //! with the vertices from map to the post treatment of section edges. - Standard_EXPORT void ProcessExistingPaveBlocks (const Standard_Integer theInt, const BOPDS_IndexedMapOfPaveBlock& theMPBOnIn, const BOPCol_DataMapOfIntegerListOfInteger& theDMBV, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& theMSCPB, BOPCol_DataMapOfShapeInteger& theMVI, BOPDS_MapOfPaveBlock& theMPB); + Standard_EXPORT void ProcessExistingPaveBlocks (const Standard_Integer theInt, const BOPDS_IndexedMapOfPaveBlock& theMPBOnIn, const TColStd_DataMapOfIntegerListOfInteger& theDMBV, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& theMSCPB, TopTools_DataMapOfShapeInteger& theMVI, BOPDS_MapOfPaveBlock& theMPB); //! Replaces existing pave block with new pave blocks . @@ -370,7 +369,7 @@ protected: //! Treatment of vertices that were created in EE intersections. - Standard_EXPORT void TreatNewVertices(const BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& theMVCPB, BOPCol_IndexedDataMapOfShapeListOfShape& theImages); + Standard_EXPORT void TreatNewVertices(const BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& theMVCPB, TopTools_IndexedDataMapOfShapeListOfShape& theImages); //! Put paves on the curve in case when @@ -379,10 +378,10 @@ protected: //! Keeps data for post treatment - Standard_EXPORT void PreparePostTreatFF (const Standard_Integer aInt, const Standard_Integer aCur, const Handle(BOPDS_PaveBlock)& aPB, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& aMSCPB, BOPCol_DataMapOfShapeInteger& aMVI, BOPDS_ListOfPaveBlock& aLPB); + Standard_EXPORT void PreparePostTreatFF (const Standard_Integer aInt, const Standard_Integer aCur, const Handle(BOPDS_PaveBlock)& aPB, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& aMSCPB, TopTools_DataMapOfShapeInteger& aMVI, BOPDS_ListOfPaveBlock& aLPB); //! Updates the information about faces - Standard_EXPORT void UpdateFaceInfo (BOPDS_DataMapOfPaveBlockListOfPaveBlock& theDME, const BOPCol_DataMapOfIntegerInteger& theDMV); + Standard_EXPORT void UpdateFaceInfo (BOPDS_DataMapOfPaveBlockListOfPaveBlock& theDME, const TColStd_DataMapOfIntegerInteger& theDMV); //! Updates tolerance of vertex with index @@ -390,7 +389,7 @@ protected: //! Returns TRUE if intersection happened. Standard_EXPORT Standard_Boolean ForceInterfVE(const Standard_Integer nV, Handle(BOPDS_PaveBlock)& aPB, - BOPCol_MapOfInteger& theMEdges); + TColStd_MapOfInteger& theMEdges); //! Updates tolerance of vertex with index //! to make it interfere with face with index @@ -409,7 +408,7 @@ protected: //! Updates pave blocks which have the paves with indices contained //! in the map . - Standard_EXPORT void UpdatePaveBlocks(const BOPCol_DataMapOfIntegerInteger& aDMNewSD); + Standard_EXPORT void UpdatePaveBlocks(const TColStd_DataMapOfIntegerInteger& aDMNewSD); //! Updates tolerance vertex nV due to V/E interference. //! It always creates new vertex if nV is from arguments. @@ -432,7 +431,7 @@ protected: Standard_EXPORT void UpdateEdgeTolerance(const Standard_Integer nE, const Standard_Real aTolNew); - Standard_EXPORT void RemovePaveBlocks(const BOPCol_MapOfInteger theEdges); + Standard_EXPORT void RemovePaveBlocks(const TColStd_MapOfInteger theEdges); Standard_EXPORT void CorrectToleranceOfSE(); @@ -491,7 +490,7 @@ protected: Standard_EXPORT void ForceInterfEE(); - BOPCol_ListOfShape myArguments; + TopTools_ListOfShape myArguments; BOPDS_PDS myDS; BOPDS_PIterator myIterator; Handle(IntTools_Context) myContext; diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_1.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_1.cxx index 5b5505c429..3506d338c5 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_1.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_1.cxx @@ -20,11 +20,6 @@ #include #include #include -#include -#include -#include -#include -#include #include #include #include @@ -38,10 +33,12 @@ #include #include #include +#include #include #include #include #include +#include //======================================================================= // function: PerformVV @@ -64,8 +61,8 @@ void BOPAlgo_PaveFiller::PerformVV() //-----------------------------------------------------scope f aAllocator= NCollection_BaseAllocator::CommonBaseAllocator(); - BOPCol_IndexedDataMapOfIntegerListOfInteger aMILI(100, aAllocator); - NCollection_List aMBlocks(aAllocator); + NCollection_IndexedDataMapaMILI(100, aAllocator); + NCollection_List aMBlocks(aAllocator); // // 1. Map V/LV for (; myIterator->More(); myIterator->Next()) { @@ -84,15 +81,15 @@ void BOPAlgo_PaveFiller::PerformVV() BOPAlgo_Tools::MakeBlocks(aMILI, aMBlocks, aAllocator); // // 3. Make vertices - NCollection_List::Iterator aItB(aMBlocks); + NCollection_List::Iterator aItB(aMBlocks); for (; aItB.More(); aItB.Next()) { - const BOPCol_ListOfInteger& aLI = aItB.Value(); + const TColStd_ListOfInteger& aLI = aItB.Value(); MakeSDVertices(aLI); } // - BOPCol_DataMapIteratorOfDataMapOfIntegerInteger aItDMII; + TColStd_DataMapIteratorOfDataMapOfIntegerInteger aItDMII; // - BOPCol_DataMapOfIntegerInteger& aDMII=myDS->ShapesSD(); + TColStd_DataMapOfIntegerInteger& aDMII=myDS->ShapesSD(); aItDMII.Initialize(aDMII); for (; aItDMII.More(); aItDMII.Next()) { n1=aItDMII.Key(); @@ -109,13 +106,13 @@ void BOPAlgo_PaveFiller::PerformVV() // purpose: //======================================================================= Standard_Integer BOPAlgo_PaveFiller::MakeSDVertices - (const BOPCol_ListOfInteger& theVertIndices, + (const TColStd_ListOfInteger& theVertIndices, const Standard_Boolean theAddInterfs) { TopoDS_Vertex aVSD, aVn; Standard_Integer nSD = -1; - BOPCol_ListIteratorOfListOfInteger aItLI(theVertIndices); - BOPCol_ListOfShape aLV; + TColStd_ListIteratorOfListOfInteger aItLI(theVertIndices); + TopTools_ListOfShape aLV; for (; aItLI.More(); aItLI.Next()) { Standard_Integer nX = aItLI.Value(), nSD1; if (myDS->HasShapeSD(nX, nSD1)) { @@ -167,7 +164,7 @@ Standard_Integer BOPAlgo_PaveFiller::MakeSDVertices Standard_Integer iR1 = myDS->Rank(n1); const TopoDS_Shape& aV1 = myDS->Shape(n1); // - BOPCol_ListIteratorOfListOfInteger aItLI2 = aItLI; + TColStd_ListIteratorOfListOfInteger aItLI2 = aItLI; aItLI2.Next(); for (; aItLI2.More(); aItLI2.Next()) { Standard_Integer n2 = aItLI2.Value(); @@ -186,7 +183,7 @@ Standard_Integer BOPAlgo_PaveFiller::MakeSDVertices // if (theAddInterfs) { myDS->AddInterf(n1, n2); - BOPDS_InterfVV& aVV = aVVs.Append1(); + BOPDS_InterfVV& aVV = aVVs.Appended(); // aVV.SetIndices(n1, n2); aVV.SetIndexNew(nV); diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_10.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_10.cxx index 37b683ba40..a0ee9ea378 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_10.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_10.cxx @@ -48,7 +48,7 @@ void BOPAlgo_PaveFiller::SetNonDestructive() } // Standard_Boolean bFlag; - BOPCol_ListIteratorOfListOfShape aItLS; + TopTools_ListIteratorOfListOfShape aItLS; // bFlag=Standard_False; aItLS.Initialize(myArguments); @@ -69,10 +69,10 @@ void BOPAlgo_PaveFiller::UpdateEdgeTolerance (const Standard_Integer nE, Standard_Integer nV, nVx; Standard_Real aTolV; BRep_Builder aBB; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; // BOPDS_ShapeInfo& aSIE=myDS->ChangeShapeInfo(nE); - const BOPCol_ListOfInteger& aLI=aSIE.SubShapes(); + const TColStd_ListOfInteger& aLI=aSIE.SubShapes(); // if (myNonDestructive) { bIsNewShape=myDS->IsNewShape(nE); @@ -196,7 +196,7 @@ void BOPAlgo_PaveFiller::UpdateCommonBlocksWithSDVertices() Standard_Integer aNbPBP; // BOPDS_VectorOfListOfPaveBlock& aPBP=myDS->ChangePaveBlocksPool(); - aNbPBP=aPBP.Extent(); + aNbPBP=aPBP.Length(); if(!aNbPBP) { return; } @@ -237,7 +237,7 @@ namespace //purpose : //======================================================================= template - void UpdateIntfsWithSDVertices(BOPDS_PDS theDS, BOPCol_NCVector& theInterfs) + void UpdateIntfsWithSDVertices(BOPDS_PDS theDS, NCollection_Vector& theInterfs) { for (Standard_Integer i = 0; i < theInterfs.Length(); i++) { diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_11.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_11.cxx index 83faf2d126..e60fa18540 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_11.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_11.cxx @@ -42,7 +42,7 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() // // Map of connections of interfering shapes NCollection_IndexedDataMap aMCSI; BOPDS_MapOfCommonBlock aMCBFence; // @@ -63,8 +63,8 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() // // Analyze the shared vertices and common blocks // - BOPCol_MapOfInteger aMSubS; - BOPCol_ListIteratorOfListOfInteger aItLI(aSI.SubShapes()); + TColStd_MapOfInteger aMSubS; + TColStd_ListIteratorOfListOfInteger aItLI(aSI.SubShapes()); for (; aItLI.More(); aItLI.Next()) { Standard_Integer nV = aItLI.Value(); myDS->HasShapeSD(nV, nV); @@ -86,9 +86,9 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() if (!aR.Contains(nV[k]) && !aMSubS.Contains(nV[k])) { // Add connection const TopoDS_Shape& aV = myDS->Shape(nV[k]); - BOPCol_IndexedMapOfShape* pMSOr = aMCSI.ChangeSeek(aV); + TopTools_IndexedMapOfShape* pMSOr = aMCSI.ChangeSeek(aV); if (!pMSOr) { - pMSOr = &aMCSI(aMCSI.Add(aV, BOPCol_IndexedMapOfShape())); + pMSOr = &aMCSI(aMCSI.Add(aV, TopTools_IndexedMapOfShape())); } pMSOr->Add(aS); } @@ -101,7 +101,7 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() if (aMCBFence.Add(aCB)) { const BOPDS_ListOfPaveBlock& aLPBCB = aCB->PaveBlocks(); // - BOPCol_ListOfInteger aLE; + TColStd_ListOfInteger aLE; BOPDS_ListIteratorOfListOfPaveBlock aItCB(aLPBCB); for (; aItCB.More(); aItCB.Next()) { const Handle(BOPDS_PaveBlock)& aPBCB = aItCB.Value(); @@ -117,7 +117,7 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() TopoDS_Compound aWC; aBB.MakeCompound(aWC); // - BOPCol_ListIteratorOfListOfInteger aItLE(aLE); + TColStd_ListIteratorOfListOfInteger aItLE(aLE); for (; aItLE.More(); aItLE.Next()) { const TopoDS_Shape& aE1 = myDS->Shape(aItLE.Value()); aBB.Add(aWC, aE1); @@ -134,14 +134,14 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() const BOPDS_FaceInfo& aFI = myDS->FaceInfo(j); // for (Standard_Integer k = 0; k < 2; ++k) { - const BOPCol_MapOfInteger& aMVF = !k ? aFI.VerticesIn() : aFI.VerticesSc(); - BOPCol_MapIteratorOfMapOfInteger aItM(aMVF); + const TColStd_MapOfInteger& aMVF = !k ? aFI.VerticesIn() : aFI.VerticesSc(); + TColStd_MapIteratorOfMapOfInteger aItM(aMVF); for (; aItM.More(); aItM.Next()) { const TopoDS_Shape& aV = myDS->Shape(aItM.Value()); // add connection - BOPCol_IndexedMapOfShape* pMSOr = aMCSI.ChangeSeek(aV); + TopTools_IndexedMapOfShape* pMSOr = aMCSI.ChangeSeek(aV); if (!pMSOr) { - pMSOr = &aMCSI(aMCSI.Add(aV, BOPCol_IndexedMapOfShape())); + pMSOr = &aMCSI(aMCSI.Add(aV, TopTools_IndexedMapOfShape())); } pMSOr->Add(aS); } @@ -154,9 +154,9 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() const Handle(BOPDS_PaveBlock)& aPB = aMPBF(iPB); const TopoDS_Shape& aE = myDS->Shape(aPB->Edge()); // add connection - BOPCol_IndexedMapOfShape* pMSOr = aMCSI.ChangeSeek(aE); + TopTools_IndexedMapOfShape* pMSOr = aMCSI.ChangeSeek(aE); if (!pMSOr) { - pMSOr = &aMCSI(aMCSI.Add(aE, BOPCol_IndexedMapOfShape())); + pMSOr = &aMCSI(aMCSI.Add(aE, TopTools_IndexedMapOfShape())); } pMSOr->Add(aS); } @@ -167,7 +167,7 @@ void BOPAlgo_PaveFiller::CheckSelfInterference() // Analyze connections Standard_Integer aNbC = aMCSI.Extent(); for (j = 1; j <= aNbC; ++j) { - const BOPCol_IndexedMapOfShape& aMCS = aMCSI(j); + const TopTools_IndexedMapOfShape& aMCS = aMCSI(j); if (aMCS.Extent() > 1) { // Add acquired self-interference warning: // Several faces from one argument contain the same vertex or edge diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_2.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_2.cxx index 9ac5e67ae7..cea0789dd3 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_2.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_2.cxx @@ -19,8 +19,6 @@ #include #include #include -#include -#include #include #include #include @@ -28,10 +26,12 @@ #include #include #include +#include #include #include #include #include +#include #include #include #include @@ -136,16 +136,16 @@ class BOPAlgo_VertexEdge : public BOPAlgo_Algo { Handle(BOPDS_PaveBlock) myPB; }; //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfVertexEdge; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_VertexEdgeFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_VertexEdgeCnt; @@ -194,9 +194,9 @@ void BOPAlgo_PaveFiller::PerformVE() continue; } // - BOPCol_ListOfInteger* pLV = aMVEPairs.ChangeSeek(aPB); + TColStd_ListOfInteger* pLV = aMVEPairs.ChangeSeek(aPB); if (!pLV) - pLV = &aMVEPairs(aMVEPairs.Add(aPB, BOPCol_ListOfInteger())); + pLV = &aMVEPairs(aMVEPairs.Add(aPB, TColStd_ListOfInteger())); pLV->Append(nV); } // @@ -227,14 +227,14 @@ void BOPAlgo_PaveFiller::IntersectVE // for all vertices having the same SD vertex. // It will also be used as a Fence map to avoid repeated // intersection of the same SD vertex with edge - NCollection_DataMap aDMVSD; + NCollection_DataMap aDMVSD; // for (i = 1; i <= aNbVE; ++i) { const Handle(BOPDS_PaveBlock)& aPB = theVEPairs.FindKey(i); Standard_Integer nE = aPB->OriginalEdge(); // - const BOPCol_ListOfInteger& aLV = theVEPairs(i); - BOPCol_ListIteratorOfListOfInteger aItLV(aLV); + const TColStd_ListOfInteger& aLV = theVEPairs(i); + TColStd_ListIteratorOfListOfInteger aItLV(aLV); for (; aItLV.More(); aItLV.Next()) { Standard_Integer nV = aItLV.Value(); // @@ -242,20 +242,20 @@ void BOPAlgo_PaveFiller::IntersectVE myDS->HasShapeSD(nV, nVSD); // BOPDS_Pair aPair(nVSD, nE); - BOPCol_ListOfInteger* pLI = aDMVSD.ChangeSeek(aPair); + TColStd_ListOfInteger* pLI = aDMVSD.ChangeSeek(aPair); if (pLI) { // Already added pLI->Append(nV); continue; } // New pair - pLI = aDMVSD.Bound(aPair, BOPCol_ListOfInteger()); + pLI = aDMVSD.Bound(aPair, TColStd_ListOfInteger()); pLI->Append(nV); // const TopoDS_Vertex& aV = TopoDS::Vertex(myDS->Shape(nVSD)); const TopoDS_Edge& aE = TopoDS::Edge(myDS->Shape(nE)); // - BOPAlgo_VertexEdge& aVESolver = aVVE.Append1(); + BOPAlgo_VertexEdge& aVESolver = aVVE.Appended(); aVESolver.SetIndices(nVSD, nE); aVESolver.SetVertex(aV); aVESolver.SetEdge(aE); @@ -271,10 +271,10 @@ void BOPAlgo_PaveFiller::IntersectVE //============================================================= // // Keep the modified edges for further update - BOPCol_MapOfInteger aMEdges; + TColStd_MapOfInteger aMEdges; // // Analyze intersections - aNbVE = aVVE.Extent(); + aNbVE = aVVE.Length(); for (i = 0; i < aNbVE; ++i) { const BOPAlgo_VertexEdge& aVESolver = aVVE(i); if (aVESolver.Flag() != 0) { @@ -305,12 +305,12 @@ void BOPAlgo_PaveFiller::IntersectVE if (theAddInterfs) { // Add interferences into DS BOPDS_Pair aPair(nV, nE); - const BOPCol_ListOfInteger& aLI = aDMVSD.Find(aPair); - BOPCol_ListIteratorOfListOfInteger aItLI(aLI); + const TColStd_ListOfInteger& aLI = aDMVSD.Find(aPair); + TColStd_ListIteratorOfListOfInteger aItLI(aLI); for (; aItLI.More(); aItLI.Next()) { const Standard_Integer nVOld = aItLI.Value(); // 3. Create interference V/E - BOPDS_InterfVE& aVE = aVEs.Append1(); + BOPDS_InterfVE& aVE = aVEs.Appended(); aVE.SetIndices(nVOld, nE); aVE.SetParameter(aT); // 2. Add a pair in the whole table of interferences @@ -336,7 +336,7 @@ void BOPAlgo_PaveFiller::IntersectVE //======================================================================= static void MakeNewCommonBlock(const BOPDS_ListOfPaveBlock& theLPB, - const BOPCol_ListOfInteger& theLFaces, + const TColStd_ListOfInteger& theLFaces, BOPDS_PDS& theDS) { // Make Common Block from the pave blocks in the list @@ -354,7 +354,7 @@ static // function: SplitPaveBlocks // purpose: //======================================================================= -void BOPAlgo_PaveFiller::SplitPaveBlocks(const BOPCol_MapOfInteger& theMEdges, +void BOPAlgo_PaveFiller::SplitPaveBlocks(const TColStd_MapOfInteger& theMEdges, const Standard_Boolean theAddInterfs) { // Fence map to avoid unification of the same vertices twice @@ -364,7 +364,7 @@ void BOPAlgo_PaveFiller::SplitPaveBlocks(const BOPCol_MapOfInteger& theMEdges, BOPDS_ListOfPaveBlock, TColStd_MapTransientHasher> aMCBNewPB; // - BOPCol_MapIteratorOfMapOfInteger aItM(theMEdges); + TColStd_MapIteratorOfMapOfInteger aItM(theMEdges); for (; aItM.More(); aItM.Next()) { Standard_Integer nE = aItM.Value(); BOPDS_ListOfPaveBlock& aLPB = myDS->ChangePaveBlocks(nE); @@ -400,7 +400,7 @@ void BOPAlgo_PaveFiller::SplitPaveBlocks(const BOPCol_MapOfInteger& theMEdges, BOPDS_Pair aPair; aPair.SetIndices(nV1, nV2); if (aMPairs.Add(aPair)) { - BOPCol_ListOfInteger aLV; + TColStd_ListOfInteger aLV; aLV.Append(nV1); aLV.Append(nV2); MakeSDVertices(aLV, theAddInterfs); diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx index c3857b52fa..ff430f6115 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx @@ -20,8 +20,6 @@ #include #include #include -#include -#include #include #include #include @@ -32,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -46,6 +45,7 @@ #include #include #include +#include #include #include #include @@ -112,14 +112,14 @@ class BOPAlgo_EdgeEdge : }; // //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfEdgeEdge; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_EdgeEdgeFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_EdgeEdgeCnt; // @@ -148,7 +148,7 @@ void BOPAlgo_PaveFiller::PerformEE() BOPAlgo_VectorOfEdgeEdge aVEdgeEdge; BOPDS_MapIteratorOfMapOfPaveBlock aItPB; // keep modified edges for further update - BOPCol_MapOfInteger aMEdges; + TColStd_MapOfInteger aMEdges; // aAllocator=NCollection_BaseAllocator::CommonBaseAllocator(); //-----------------------------------------------------scope f @@ -215,7 +215,7 @@ void BOPAlgo_PaveFiller::PerformEE() bExpressCompute=((nV11==nV21 && nV12==nV22) || (nV12==nV21 && nV11==nV22)); // - BOPAlgo_EdgeEdge& anEdgeEdge=aVEdgeEdge.Append1(); + BOPAlgo_EdgeEdge& anEdgeEdge=aVEdgeEdge.Appended(); // anEdgeEdge.UseQuickCoincidenceCheck(bExpressCompute); // @@ -230,7 +230,7 @@ void BOPAlgo_PaveFiller::PerformEE() }//for (; aIt1.More(); aIt1.Next()) { }//for (; myIterator->More(); myIterator->Next()) { // - aNbEdgeEdge=aVEdgeEdge.Extent(); + aNbEdgeEdge=aVEdgeEdge.Length(); //====================================================== BOPAlgo_EdgeEdgeCnt::Perform(myRunParallel, aVEdgeEdge); //====================================================== @@ -353,7 +353,7 @@ void BOPAlgo_PaveFiller::PerformEE() } } if (bFlag) { - BOPDS_InterfEE& aEE = aEEs.Append1(); + BOPDS_InterfEE& aEE = aEEs.Appended(); aEE.SetIndices(nE1, nE2); aEE.SetCommonPart(aCPart); continue; @@ -374,7 +374,7 @@ void BOPAlgo_PaveFiller::PerformEE() { Standard_Integer nVS[2], iFound; Standard_Real aTolVx, aD2, aDT2; - BOPCol_MapOfInteger aMV; + TColStd_MapOfInteger aMV; gp_Pnt aPnew, aPx; // iFound=0; @@ -413,8 +413,8 @@ void BOPAlgo_PaveFiller::PerformEE() } // // 1 - BOPDS_InterfEE& aEE=aEEs.Append1(); - iX=aEEs.Extent()-1; + BOPDS_InterfEE& aEE=aEEs.Appended(); + iX=aEEs.Length()-1; aEE.SetIndices(nE1, nE2); aEE.SetCommonPart(aCPart); // 2 @@ -440,8 +440,8 @@ void BOPAlgo_PaveFiller::PerformEE() break; } // 1 - BOPDS_InterfEE& aEE=aEEs.Append1(); - iX=aEEs.Extent()-1; + BOPDS_InterfEE& aEE=aEEs.Appended(); + iX=aEEs.Length()-1; aEE.SetIndices(nE1, nE2); aEE.SetCommonPart(aCPart); // 2 @@ -497,7 +497,7 @@ void BOPAlgo_PaveFiller::PerformNewVertices Standard_Real aTolAdd = myFuzzyValue / 2.; // // 1. Fuse the new vertices - BOPCol_IndexedDataMapOfShapeListOfShape aImages; + TopTools_IndexedDataMapOfShapeListOfShape aImages; TreatNewVertices(theMVCPB, aImages); // // 2. Add new vertices to myDS and connect indices to CPB structure @@ -507,7 +507,7 @@ void BOPAlgo_PaveFiller::PerformNewVertices Standard_Integer i, aNb = aImages.Extent(); for (i = 1; i <= aNb; ++i) { const TopoDS_Vertex& aV = TopoDS::Vertex(aImages.FindKey(i)); - const BOPCol_ListOfShape& aLVSD = aImages.FindFromIndex(i); + const TopTools_ListOfShape& aLVSD = aImages.FindFromIndex(i); // BOPDS_ShapeInfo aSI; aSI.SetShapeType(TopAbs_VERTEX); @@ -519,7 +519,7 @@ void BOPAlgo_PaveFiller::PerformNewVertices aBox.Add(BRep_Tool::Pnt(aV)); aBox.SetGap(BRep_Tool::Tolerance(aV) + aTolAdd); // - BOPCol_ListIteratorOfListOfShape aItLS(aLVSD); + TopTools_ListIteratorOfListOfShape aItLS(aLVSD); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aVx = aItLS.Value(); BOPDS_CoupleOfPaveBlocks &aCPB = theMVCPB.ChangeFromKey(aVx); @@ -540,9 +540,9 @@ void BOPAlgo_PaveFiller::PerformNewVertices Handle(BOPDS_PaveBlock) aPB[2]; aCPB.PaveBlocks(aPB[0], aPB[1]); for (Standard_Integer j = 0; j < 2; ++j) { - BOPCol_ListOfInteger *pLI = aMPBLI.ChangeSeek(aPB[j]); + TColStd_ListOfInteger *pLI = aMPBLI.ChangeSeek(aPB[j]); if (!pLI) { - pLI = &aMPBLI(aMPBLI.Add(aPB[j], BOPCol_ListOfInteger(theAllocator))); + pLI = &aMPBLI(aMPBLI.Add(aPB[j], TColStd_ListOfInteger(theAllocator))); } pLI->Append(iV); // @@ -561,11 +561,11 @@ void BOPAlgo_PaveFiller::PerformNewVertices //======================================================================= void BOPAlgo_PaveFiller::TreatNewVertices (const BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& theMVCPB, - BOPCol_IndexedDataMapOfShapeListOfShape& myImages) + TopTools_IndexedDataMapOfShapeListOfShape& myImages) { // // Prepare for intersection - BOPCol_IndexedDataMapOfShapeReal aVerts; + TopTools_IndexedDataMapOfShapeReal aVerts; Standard_Integer i, aNbV = theMVCPB.Extent(); for (i = 1; i <= aNbV; ++i) { const TopoDS_Shape& aV = theMVCPB.FindKey(i); @@ -574,13 +574,13 @@ void BOPAlgo_PaveFiller::TreatNewVertices } // // Perform intersection - BOPCol_ListOfListOfShape aChains; + TopTools_ListOfListOfShape aChains; BOPAlgo_Tools::IntersectVertices(aVerts, myRunParallel, myFuzzyValue, aChains); // // Treat the results - make new vertices for each chain - BOPCol_ListOfListOfShape::Iterator aItC(aChains); + TopTools_ListOfListOfShape::Iterator aItC(aChains); for (; aItC.More(); aItC.Next()) { - const BOPCol_ListOfShape& aLVSD = aItC.Value(); + const TopTools_ListOfShape& aLVSD = aItC.Value(); // TopoDS_Vertex aVNew; BOPTools_AlgoTools::MakeVertex(aLVSD, aVNew); @@ -666,7 +666,7 @@ void BOPAlgo_PaveFiller::AnalyzeShrunkData(const Handle(BOPDS_PaveBlock)& thePB, //======================================================================= Standard_Boolean BOPAlgo_PaveFiller::ForceInterfVE(const Standard_Integer nV, Handle(BOPDS_PaveBlock)& aPB, - BOPCol_MapOfInteger& theMEdges) + TColStd_MapOfInteger& theMEdges) { Standard_Integer nE, nVx, nVSD, iFlag; Standard_Real aT, aTolVNew; @@ -707,7 +707,7 @@ Standard_Boolean BOPAlgo_PaveFiller::ForceInterfVE(const Standard_Integer nV, BOPDS_VectorOfInterfVE& aVEs=myDS->InterfVE(); aVEs.SetIncrement(10); // 1 - BOPDS_InterfVE& aVE=aVEs.Append1(); + BOPDS_InterfVE& aVE=aVEs.Appended(); aVE.SetIndices(nV, nE); aVE.SetParameter(aT); // 2 @@ -820,7 +820,7 @@ void BOPAlgo_PaveFiller::ForceInterfEE() BOPDS_MapOfPaveBlock aMPBFence(1, anAlloc); BOPDS_VectorOfListOfPaveBlock& aPBP = myDS->ChangePaveBlocksPool(); - Standard_Integer aNbPBP = aPBP.Extent(); + Standard_Integer aNbPBP = aPBP.Length(); for (i = 0; i < aNbPBP; ++i) { BOPDS_ListOfPaveBlock& aLPB = aPBP(i); @@ -911,7 +911,7 @@ void BOPAlgo_PaveFiller::ForceInterfEE() aPB2->Range(aT21, aT22); // Add pair for intersection - BOPAlgo_EdgeEdge& anEdgeEdge = aVEdgeEdge.Append1(); + BOPAlgo_EdgeEdge& anEdgeEdge = aVEdgeEdge.Appended(); anEdgeEdge.UseQuickCoincidenceCheck(Standard_True); anEdgeEdge.SetPaveBlock1(aPB1); anEdgeEdge.SetPaveBlock2(aPB2); @@ -923,7 +923,7 @@ void BOPAlgo_PaveFiller::ForceInterfEE() } } - Standard_Integer aNbPairs = aVEdgeEdge.Extent(); + Standard_Integer aNbPairs = aVEdgeEdge.Length(); if (!aNbPairs) return; @@ -968,7 +968,7 @@ void BOPAlgo_PaveFiller::ForceInterfEE() const Standard_Integer nE1 = aPB[0]->OriginalEdge(); const Standard_Integer nE2 = aPB[1]->OriginalEdge(); - BOPDS_InterfEE& aEE = aEEs.Append1(); + BOPDS_InterfEE& aEE = aEEs.Appended(); aEE.SetIndices(nE1, nE2); aEE.SetCommonPart(aCP); myDS->AddInterf(nE1, nE2); diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_4.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_4.cxx index 900d363bbb..e90ddbb608 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_4.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_4.cxx @@ -19,9 +19,6 @@ #include #include #include -#include -#include -#include #include #include #include @@ -31,11 +28,14 @@ #include #include #include +#include #include #include #include #include #include +#include +#include #include #include @@ -132,16 +132,16 @@ class BOPAlgo_VertexFace : public BOPAlgo_Algo { Handle(IntTools_Context) myContext; }; //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfVertexFace; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_VertexFaceFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_VertexFaceCnt; @@ -204,7 +204,7 @@ void BOPAlgo_PaveFiller::PerformVF() const TopoDS_Vertex& aV=(*(TopoDS_Vertex *)(&myDS->Shape(nVx))); const TopoDS_Face& aF=(*(TopoDS_Face *)(&myDS->Shape(nF))); // - BOPAlgo_VertexFace& aVertexFace=aVVF.Append1(); + BOPAlgo_VertexFace& aVertexFace=aVVF.Appended(); // aVertexFace.SetIndices(nV, nF); aVertexFace.SetVertex(aV); @@ -213,7 +213,7 @@ void BOPAlgo_PaveFiller::PerformVF() aVertexFace.SetProgressIndicator(myProgressIndicator); }//for (; myIterator->More(); myIterator->Next()) { // - aNbVF=aVVF.Extent(); + aNbVF=aVVF.Length(); //================================================================ BOPAlgo_VertexFaceCnt::Perform(myRunParallel, aVVF, myContext); //================================================================ @@ -234,7 +234,7 @@ void BOPAlgo_PaveFiller::PerformVF() aVertexFace.Indices(nV, nF); aVertexFace.Parameters(aT1, aT2); // 1 - BOPDS_InterfVF& aVF=aVFs.Append1(); + BOPDS_InterfVF& aVF=aVFs.Appended(); aVF.SetIndices(nV, nF); aVF.SetUV(aT1, aT2); // 2 @@ -250,7 +250,7 @@ void BOPAlgo_PaveFiller::PerformVF() } // 5 update FaceInfo BOPDS_FaceInfo& aFI=myDS->ChangeFaceInfo(nF); - BOPCol_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); + TColStd_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); aMVIn.Add(nVx); }//for (k=0; k < aNbVF; ++k) { // @@ -264,19 +264,19 @@ void BOPAlgo_PaveFiller::TreatVerticesEE() { Standard_Integer i, aNbS,aNbEEs, nF, nV, iFlag; Standard_Real aT1, aT2, dummy; - BOPCol_ListIteratorOfListOfInteger aItLI; + TColStd_ListIteratorOfListOfInteger aItLI; Handle(NCollection_BaseAllocator) aAllocator; // aAllocator= NCollection_BaseAllocator::CommonBaseAllocator(); - BOPCol_ListOfInteger aLIV(aAllocator), aLIF(aAllocator); - BOPCol_MapOfInteger aMI(100, aAllocator); + TColStd_ListOfInteger aLIV(aAllocator), aLIF(aAllocator); + TColStd_MapOfInteger aMI(100, aAllocator); BOPDS_MapOfPaveBlock aMPBF(100, aAllocator); // aNbS=myDS->NbSourceShapes(); // BOPDS_VectorOfInterfEE& aEEs=myDS->InterfEE(); - aNbEEs=aEEs.Extent(); + aNbEEs=aEEs.Length(); for (i=0; iChangeFaceInfo(nF); - const BOPCol_MapOfInteger& aMVOn=aFI.VerticesOn(); + const TColStd_MapOfInteger& aMVOn=aFI.VerticesOn(); // if (!aMVOn.Contains(nV)) { const TopoDS_Vertex& aV=(*(TopoDS_Vertex *)(&myDS->Shape(nV))); @@ -324,14 +324,14 @@ void BOPAlgo_PaveFiller::TreatVerticesEE() iFlag = myContext->ComputeVF(aV, aF, aT1, aT2, dummy, myFuzzyValue); if (!iFlag) { // 1 - BOPDS_InterfVF& aVF=aVFs.Append1(); - i=aVFs.Extent()-1; + BOPDS_InterfVF& aVF=aVFs.Appended(); + i=aVFs.Length()-1; aVF.SetIndices(nV, nF); aVF.SetUV(aT1, aT2); // 2 myDS->AddInterf(nV, nF); // - BOPCol_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); + TColStd_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); aMVIn.Add(nV); } } diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx index 717e478920..19afaa4152 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx @@ -20,9 +20,6 @@ #include #include #include -#include -#include -#include #include #include #include @@ -33,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -43,7 +41,9 @@ #include #include #include +#include #include +#include #include #include #include @@ -123,15 +123,15 @@ class BOPAlgo_EdgeFace : }; // //======================================================================= -typedef BOPCol_NCVector BOPAlgo_VectorOfEdgeFace; +typedef NCollection_Vector BOPAlgo_VectorOfEdgeFace; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_EdgeFaceFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_EdgeFaceCnt; @@ -178,7 +178,7 @@ void BOPAlgo_PaveFiller::PerformEF() // aAllocator=NCollection_BaseAllocator::CommonBaseAllocator(); // - BOPCol_MapOfInteger aMIEFC(100, aAllocator); + TColStd_MapOfInteger aMIEFC(100, aAllocator); BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks aMVCPB(100, aAllocator); BOPDS_IndexedDataMapOfPaveBlockListOfInteger aMPBLI(100, aAllocator); BOPAlgo_DataMapOfPaveBlockBndBox aDMPBBox(100, aAllocator); @@ -204,8 +204,8 @@ void BOPAlgo_PaveFiller::PerformEF() BOPDS_FaceInfo& aFI=myDS->ChangeFaceInfo(nF); const BOPDS_IndexedMapOfPaveBlock& aMPBF=aFI.PaveBlocksOn(); // - const BOPCol_MapOfInteger& aMVIn=aFI.VerticesIn(); - const BOPCol_MapOfInteger& aMVOn=aFI.VerticesOn(); + const TColStd_MapOfInteger& aMVIn=aFI.VerticesIn(); + const TColStd_MapOfInteger& aMVOn=aFI.VerticesOn(); // aTolE=BRep_Tool::Tolerance(aE); aTolF=BRep_Tool::Tolerance(aF); @@ -234,7 +234,7 @@ void BOPAlgo_PaveFiller::PerformEF() bV2=aMVIn.Contains(nV2) || aMVOn.Contains(nV2); bExpressCompute=bV1 && bV2; // - BOPAlgo_EdgeFace& aEdgeFace=aVEdgeFace.Append1(); + BOPAlgo_EdgeFace& aEdgeFace=aVEdgeFace.Appended(); // aEdgeFace.SetIndices(nE, nF); aEdgeFace.SetPaveBlock(aPB); @@ -260,7 +260,7 @@ void BOPAlgo_PaveFiller::PerformEF() }//for (; aIt.More(); aIt.Next()) { }//for (; myIterator->More(); myIterator->Next()) { // - aNbEdgeFace=aVEdgeFace.Extent(); + aNbEdgeFace=aVEdgeFace.Length(); //================================================================= BOPAlgo_EdgeFaceCnt::Perform(myRunParallel, aVEdgeFace, myContext); //================================================================= @@ -306,8 +306,8 @@ void BOPAlgo_PaveFiller::PerformEF() IntTools_Range aR1(aT1, aTS1), aR2(aTS2, aT2); // BOPDS_FaceInfo& aFI=myDS->ChangeFaceInfo(nF); - const BOPCol_MapOfInteger& aMIFOn=aFI.VerticesOn(); - const BOPCol_MapOfInteger& aMIFIn=aFI.VerticesIn(); + const TColStd_MapOfInteger& aMIFOn=aFI.VerticesOn(); + const TColStd_MapOfInteger& aMIFIn=aFI.VerticesIn(); // Standard_Boolean bLinePlane = Standard_False; if (aNbCPrts) { @@ -342,8 +342,8 @@ void BOPAlgo_PaveFiller::PerformEF() if (bV[0] && bV[1]) { IntTools_CommonPrt aCP = aCPart; aCP.SetType(TopAbs_EDGE); - BOPDS_InterfEF& aEF=aEFs.Append1(); - iX=aEFs.Extent()-1; + BOPDS_InterfEF& aEF=aEFs.Appended(); + iX=aEFs.Length()-1; aEF.SetIndices(nE, nF); aEF.SetCommonPart(aCP); myDS->AddInterf(nE, nF); @@ -411,8 +411,8 @@ void BOPAlgo_PaveFiller::PerformEF() // aMIEFC.Add(nF); // 1 - BOPDS_InterfEF& aEF=aEFs.Append1(); - iX=aEFs.Extent()-1; + BOPDS_InterfEF& aEF=aEFs.Appended(); + iX=aEFs.Length()-1; aEF.SetIndices(nE, nF); aEF.SetCommonPart(aCPart); // 2 @@ -431,8 +431,8 @@ void BOPAlgo_PaveFiller::PerformEF() aMIEFC.Add(nF); // // 1 - BOPDS_InterfEF& aEF=aEFs.Append1(); - iX=aEFs.Extent()-1; + BOPDS_InterfEF& aEF=aEFs.Appended(); + iX=aEFs.Length()-1; aEF.SetIndices(nE, nF); // bV[0]=CheckFacePaves(nV[0], aMIFOn, aMIFIn); @@ -462,7 +462,7 @@ void BOPAlgo_PaveFiller::PerformEF() PerformNewVertices(aMVCPB, aAllocator, Standard_False); // // Update FaceInfoIn for all faces having EF common parts - BOPCol_MapIteratorOfMapOfInteger aItMI; + TColStd_MapIteratorOfMapOfInteger aItMI; aItMI.Initialize(aMIEFC); for (; aItMI.More(); aItMI.Next()) { nF=aItMI.Value(); @@ -480,12 +480,12 @@ void BOPAlgo_PaveFiller::PerformEF() //======================================================================= Standard_Boolean BOPAlgo_PaveFiller::CheckFacePaves (const Standard_Integer nVx, - const BOPCol_MapOfInteger& aMIFOn, - const BOPCol_MapOfInteger& aMIFIn) + const TColStd_MapOfInteger& aMIFOn, + const TColStd_MapOfInteger& aMIFIn) { Standard_Boolean bRet; Standard_Integer nV; - BOPCol_MapIteratorOfMapOfInteger aIt; + TColStd_MapIteratorOfMapOfInteger aIt; // bRet=Standard_False; // @@ -514,11 +514,11 @@ Standard_Boolean BOPAlgo_PaveFiller::CheckFacePaves //======================================================================= Standard_Boolean BOPAlgo_PaveFiller::CheckFacePaves (const TopoDS_Vertex& aVnew, - const BOPCol_MapOfInteger& aMIF) + const TColStd_MapOfInteger& aMIF) { Standard_Boolean bRet; Standard_Integer nV, iFlag; - BOPCol_MapIteratorOfMapOfInteger aIt; + TColStd_MapIteratorOfMapOfInteger aIt; // bRet=Standard_True; // @@ -557,7 +557,7 @@ Standard_Boolean BOPAlgo_PaveFiller::ForceInterfVF BOPDS_VectorOfInterfVF& aVFs=myDS->InterfVF(); aVFs.SetIncrement(10); // 1 - BOPDS_InterfVF& aVF=aVFs.Append1(); + BOPDS_InterfVF& aVF=aVFs.Appended(); // aVF.SetIndices(nV, nF); aVF.SetUV(U, V); @@ -572,7 +572,7 @@ Standard_Boolean BOPAlgo_PaveFiller::ForceInterfVF } // BOPDS_FaceInfo& aFI=myDS->ChangeFaceInfo(nF); - BOPCol_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); + TColStd_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); aMVIn.Add(nVx); // // check for self-interference @@ -610,7 +610,7 @@ void BOPAlgo_PaveFiller::ReduceIntersectionRange(const Standard_Integer theV1, } // BOPDS_VectorOfInterfEE& aEEs = myDS->InterfEE(); - Standard_Integer aNbEEs = aEEs.Extent(); + Standard_Integer aNbEEs = aEEs.Length(); if (!aNbEEs) { return; } @@ -619,9 +619,9 @@ void BOPAlgo_PaveFiller::ReduceIntersectionRange(const Standard_Integer theV1, Standard_Real aTR1, aTR2; // // get face's edges to check that E/E contains the edge from the face - BOPCol_MapOfInteger aMFE; - const BOPCol_ListOfInteger& aLI = myDS->ShapeInfo(theF).SubShapes(); - BOPCol_ListIteratorOfListOfInteger aItLI(aLI); + TColStd_MapOfInteger aMFE; + const TColStd_ListOfInteger& aLI = myDS->ShapeInfo(theF).SubShapes(); + TColStd_ListIteratorOfListOfInteger aItLI(aLI); for (; aItLI.More(); aItLI.Next()) { nE1 = aItLI.Value(); if (myDS->ShapeInfo(nE1).ShapeType() == TopAbs_EDGE) { diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx index 664ff652b5..654c9079a6 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx @@ -15,17 +15,11 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#include #include +#include +#include #include #include -#include -#include -#include -#include -#include -#include -#include #include #include #include @@ -42,20 +36,20 @@ #include #include #include -#include #include #include +#include #include -#include #include -#include +#include #include #include #include #include +#include #include -#include #include +#include #include #include #include @@ -71,7 +65,10 @@ #include #include #include +#include #include +#include +#include #include #include #include @@ -79,6 +76,8 @@ #include #include #include +#include +#include // static Standard_Real ToleranceFF(const BRepAdaptor_Surface& aBAS1, @@ -166,14 +165,14 @@ class BOPAlgo_FaceFace : }; // //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfFaceFace; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_FaceFaceFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_FaceFaceCnt; ///////////////////////////////////////////////////////////////////////// @@ -201,7 +200,7 @@ void BOPAlgo_PaveFiller::PerformFF() Standard_Boolean bSplitCurve = Standard_False; // // Fence map to store faces with updated FaceInfo structure - BOPCol_MapOfInteger aMIFence; + TColStd_MapOfInteger aMIFence; // Prepare the pairs of faces for intersection BOPAlgo_VectorOfFaceFace aVFaceFace; Standard_Integer nF1, nF2; @@ -251,14 +250,14 @@ void BOPAlgo_PaveFiller::PerformFF() // Check if the planes are really interfering Standard_Boolean bToIntersect = CheckPlanes(nF1, nF2); if (!bToIntersect) { - BOPDS_InterfFF& aFF = aFFs.Append1(); + BOPDS_InterfFF& aFF = aFFs.Appended(); aFF.SetIndices(nF1, nF2); aFF.Init(0, 0); continue; } } // - BOPAlgo_FaceFace& aFaceFace=aVFaceFace.Append1(); + BOPAlgo_FaceFace& aFaceFace=aVFaceFace.Appended(); // aFaceFace.SetIndices(nF1, nF2); aFaceFace.SetFaces(aF1, aF2); @@ -279,7 +278,7 @@ void BOPAlgo_PaveFiller::PerformFF() } else { // for the Glue mode just add all interferences of that type - BOPDS_InterfFF& aFF = aFFs.Append1(); + BOPDS_InterfFF& aFF = aFFs.Appended(); aFF.SetIndices(nF1, nF2); aFF.SetTangentFaces(Standard_False); aFF.Init(0, 0); @@ -291,12 +290,12 @@ void BOPAlgo_PaveFiller::PerformFF() BOPAlgo_FaceFaceCnt::Perform(myRunParallel, aVFaceFace); //====================================================== // Treatment of the results - Standard_Integer k, aNbFaceFace = aVFaceFace.Extent(); + Standard_Integer k, aNbFaceFace = aVFaceFace.Length(); for (k = 0; k < aNbFaceFace; ++k) { BOPAlgo_FaceFace& aFaceFace = aVFaceFace(k); aFaceFace.Indices(nF1, nF2); if (!aFaceFace.IsDone() || aFaceFace.HasErrors()) { - BOPDS_InterfFF& aFF = aFFs.Append1(); + BOPDS_InterfFF& aFF = aFFs.Appended(); aFF.SetIndices(nF1, nF2); aFF.Init(0, 0); // Warn about failed intersection of faces @@ -319,7 +318,7 @@ void BOPAlgo_PaveFiller::PerformFF() myDS->AddInterf(nF1, nF2); } // - BOPDS_InterfFF& aFF = aFFs.Append1(); + BOPDS_InterfFF& aFF = aFFs.Appended(); aFF.SetIndices(nF1, nF2); aFF.SetTangentFaces(bTangentFaces); aFF.Init(aNbCurves, aNbPoints); @@ -342,7 +341,7 @@ void BOPAlgo_PaveFiller::PerformFF() const IntTools_Curve& aIC = aCvsX(i); Standard_Boolean bIsValid = IntTools_Tools::CheckCurve(aIC, aBox); if (bIsValid) { - BOPDS_Curve& aNC = aVNC.Append1(); + BOPDS_Curve& aNC = aVNC.Appended(); aNC.SetCurve(aIC); // make sure that the bounding box has the maximal gap aBox.Enlarge(aBoxExpandValue); @@ -357,7 +356,7 @@ void BOPAlgo_PaveFiller::PerformFF() const IntTools_PntOn2Faces& aPi = aPntsX(i); const gp_Pnt& aP = aPi.P1().Pnt(); // - BOPDS_Point& aNP = aVNP.Append1(); + BOPDS_Point& aNP = aVNP.Appended(); aNP.SetPnt(aP); } } @@ -373,7 +372,7 @@ void BOPAlgo_PaveFiller::MakeBlocks() } // BOPDS_VectorOfInterfFF& aFFs=myDS->InterfFF(); - Standard_Integer aNbFF = aFFs.Extent(); + Standard_Integer aNbFF = aFFs.Length(); if (!aNbFF) { return; } @@ -391,23 +390,23 @@ void BOPAlgo_PaveFiller::MakeBlocks() aAllocator= NCollection_BaseAllocator::CommonBaseAllocator(); // - BOPCol_ListOfInteger aLSE(aAllocator), aLBV(aAllocator); - BOPCol_MapOfInteger aMVOnIn(100, aAllocator), + TColStd_ListOfInteger aLSE(aAllocator), aLBV(aAllocator); + TColStd_MapOfInteger aMVOnIn(100, aAllocator), aMVStick(100,aAllocator), aMVEF(100, aAllocator), aMI(100, aAllocator), aMVBounds(100, aAllocator); BOPDS_IndexedMapOfPaveBlock aMPBOnIn(100, aAllocator); BOPDS_MapOfPaveBlock aMPBAdd(100, aAllocator), aMPBCommon; BOPDS_ListOfPaveBlock aLPB(aAllocator); BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks aMSCPB(100, aAllocator); - BOPCol_DataMapOfShapeInteger aMVI(100, aAllocator); + TopTools_DataMapOfShapeInteger aMVI(100, aAllocator); BOPDS_DataMapOfPaveBlockListOfPaveBlock aDMExEdges(100, aAllocator); - BOPCol_DataMapOfIntegerReal aMVTol(100, aAllocator); - BOPCol_DataMapOfIntegerInteger aDMNewSD(100, aAllocator); - BOPCol_DataMapOfIntegerListOfInteger aDMVLV; - BOPCol_DataMapOfIntegerListOfInteger aDMBV(100, aAllocator); - BOPCol_DataMapIteratorOfDataMapOfIntegerReal aItMV; - BOPCol_IndexedMapOfShape aMicroEdges(100, aAllocator); - BOPCol_IndexedMapOfShape aVertsOnRejectedPB; + TColStd_DataMapOfIntegerReal aMVTol(100, aAllocator); + TColStd_DataMapOfIntegerInteger aDMNewSD(100, aAllocator); + TColStd_DataMapOfIntegerListOfInteger aDMVLV; + TColStd_DataMapOfIntegerListOfInteger aDMBV(100, aAllocator); + TColStd_DataMapIteratorOfDataMapOfIntegerReal aItMV; + TopTools_IndexedMapOfShape aMicroEdges(100, aAllocator); + TopTools_IndexedMapOfShape aVertsOnRejectedPB; // for (i=0; iInterfFF(); - aNbFF=aFFs.Extent(); + aNbFF=aFFs.Length(); // //1. Sections (curves, points); for (i=0; iRange(aT1, aT2); thePB->Indices(nV1, nV2); @@ -1471,7 +1470,7 @@ Standard_Boolean BOPAlgo_PaveFiller::IsExistingPaveBlock void BOPAlgo_PaveFiller::PutBoundPaveOnCurve(const TopoDS_Face& aF1, const TopoDS_Face& aF2, BOPDS_Curve& aNC, - BOPCol_ListOfInteger& aLVB) + TColStd_ListOfInteger& aLVB) { Standard_Boolean bVF; Standard_Integer nV, iFlag, nVn, j, aNbEP; @@ -1572,18 +1571,18 @@ void BOPAlgo_PaveFiller::PutBoundPaveOnCurve(const TopoDS_Face& aF1, //purpose : //======================================================================= void BOPAlgo_PaveFiller::PutPavesOnCurve - (const BOPCol_MapOfInteger& aMVOnIn, + (const TColStd_MapOfInteger& aMVOnIn, BOPDS_Curve& aNC, const Standard_Integer nF1, const Standard_Integer nF2, - const BOPCol_MapOfInteger& aMI, - const BOPCol_MapOfInteger& aMVEF, - BOPCol_DataMapOfIntegerReal& aMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV) + const TColStd_MapOfInteger& aMI, + const TColStd_MapOfInteger& aMVEF, + TColStd_DataMapOfIntegerReal& aMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV) { Standard_Boolean bInBothFaces; Standard_Integer nV; - BOPCol_MapIteratorOfMapOfInteger aIt; + TColStd_MapIteratorOfMapOfInteger aIt; // const Bnd_Box& aBoxC=aNC.Box(); Standard_Real aTolR3D = Max(aNC.Tolerance(), aNC.TangentialTolerance()); @@ -1645,7 +1644,7 @@ void BOPAlgo_PaveFiller::FilterPavesOnCurves(const BOPDS_VectorOfCurve& theVNC) NCollection_IndexedDataMap > aIDMVertPBs; Standard_Integer i; const Standard_Real anEps = gp::Resolution(); - for (i = 0; i < theVNC.Extent(); ++i) + for (i = 0; i < theVNC.Length(); ++i) { const BOPDS_Curve& aNC = theVNC(i); const IntTools_Curve& aIC = aNC.Curve(); @@ -1720,7 +1719,7 @@ void BOPAlgo_PaveFiller::FilterPavesOnCurves(const BOPDS_VectorOfCurve& theVNC) //======================================================================= Standard_Boolean BOPAlgo_PaveFiller::ExtendedTolerance (const Standard_Integer nV, - const BOPCol_MapOfInteger& aMI, + const TColStd_MapOfInteger& aMI, Standard_Real& aTolVExt, const Standard_Integer aType) { @@ -1749,7 +1748,7 @@ Standard_Boolean BOPAlgo_PaveFiller::ExtendedTolerance BOPDS_VectorOfInterfEF& aEFs=myDS->InterfEF(); // for (; kInterfEF(); - aNbEFs = aEFs.Extent(); + aNbEFs = aEFs.Length(); // for(i = 0; i < aNbEFs; ++i) { const BOPDS_InterfEF& aEF = aEFs(i); @@ -1859,10 +1858,10 @@ void BOPAlgo_PaveFiller::GetEFPnts //======================================================================= void BOPAlgo_PaveFiller::PutEFPavesOnCurve (BOPDS_Curve& aNC, - const BOPCol_MapOfInteger& aMI, - const BOPCol_MapOfInteger& aMVEF, - BOPCol_DataMapOfIntegerReal& aMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV) + const TColStd_MapOfInteger& aMI, + const TColStd_MapOfInteger& aMVEF, + TColStd_DataMapOfIntegerReal& aMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV) { if (!aMVEF.Extent()) { return; @@ -1876,7 +1875,7 @@ void BOPAlgo_PaveFiller::GetEFPnts } // Standard_Integer nV; - BOPCol_MapOfInteger aMV; + TColStd_MapOfInteger aMV; // aMV.Assign(aMVEF); RemoveUsedVertices(aNC, aMV); @@ -1890,7 +1889,7 @@ void BOPAlgo_PaveFiller::GetEFPnts const Handle(Geom_Curve)& aC3D=aIC.Curve(); GeomAPI_ProjectPointOnCurve& aProjPT = myContext->ProjPT(aC3D); // - BOPCol_MapIteratorOfMapOfInteger aItMI; + TColStd_MapIteratorOfMapOfInteger aItMI; aItMI.Initialize(aMV); for (; aItMI.More(); aItMI.Next()) { nV = aItMI.Value(); @@ -1912,13 +1911,13 @@ void BOPAlgo_PaveFiller::GetEFPnts void BOPAlgo_PaveFiller::PutStickPavesOnCurve (const TopoDS_Face& aF1, const TopoDS_Face& aF2, - const BOPCol_MapOfInteger& aMI, + const TColStd_MapOfInteger& aMI, BOPDS_Curve& aNC, - const BOPCol_MapOfInteger& aMVStick, - BOPCol_DataMapOfIntegerReal& aMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV) + const TColStd_MapOfInteger& aMVStick, + TColStd_DataMapOfIntegerReal& aMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV) { - BOPCol_MapOfInteger aMV; + TColStd_MapOfInteger aMV; aMV.Assign(aMVStick); RemoveUsedVertices(aNC, aMV); // @@ -1941,7 +1940,7 @@ void BOPAlgo_PaveFiller::GetEFPnts gp_Pnt aPC[2], aPV; gp_Dir aDN[2]; gp_Pnt2d aP2D; - BOPCol_MapIteratorOfMapOfInteger aItMI, aItMI1; + TColStd_MapIteratorOfMapOfInteger aItMI, aItMI1; // aDT2=2e-7; // the rich criteria aDScPr=5.e-9; // the creasing criteria @@ -1993,9 +1992,9 @@ void BOPAlgo_PaveFiller::GetEFPnts //======================================================================= void BOPAlgo_PaveFiller::GetStickVertices(const Standard_Integer nF1, const Standard_Integer nF2, - BOPCol_MapOfInteger& aMVStick, - BOPCol_MapOfInteger& aMVEF, - BOPCol_MapOfInteger& aMI) + TColStd_MapOfInteger& aMVStick, + TColStd_MapOfInteger& aMVEF, + TColStd_MapOfInteger& aMI) { Standard_Integer nS1, nS2, nVNew, aTypeInt, i; // @@ -2006,8 +2005,8 @@ void BOPAlgo_PaveFiller::GetStickVertices(const Standard_Integer nF1, BOPDS_VectorOfInterfEF& aEFs=myDS->InterfEF(); // Standard_Integer aNbLines[5] = { - aVVs.Extent(), aVEs.Extent(), aEEs.Extent(), - aVFs.Extent(), aEFs.Extent() + aVVs.Length(), aVEs.Length(), aEEs.Length(), + aVFs.Length(), aEFs.Length() }; //collect indices of all shapes from nF1 and nF2. aMI.Clear(); @@ -2049,13 +2048,13 @@ void BOPAlgo_PaveFiller::GetStickVertices(const Standard_Integer nF1, // purpose: //======================================================================= void BOPAlgo_PaveFiller::GetFullShapeMap(const Standard_Integer nF, - BOPCol_MapOfInteger& aMI) + TColStd_MapOfInteger& aMI) { - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; Standard_Integer nS; // const BOPDS_ShapeInfo& aSI = myDS->ShapeInfo(nF); - const BOPCol_ListOfInteger& aLI = aSI.SubShapes(); + const TColStd_ListOfInteger& aLI = aSI.SubShapes(); // aMI.Add(nF); aIt.Initialize(aLI); @@ -2070,7 +2069,7 @@ void BOPAlgo_PaveFiller::GetFullShapeMap(const Standard_Integer nF, // purpose: //======================================================================= void BOPAlgo_PaveFiller::RemoveUsedVertices(BOPDS_Curve& aNC, - BOPCol_MapOfInteger& aMV) + TColStd_MapOfInteger& aMV) { if (!aMV.Extent()) { return; @@ -2097,9 +2096,9 @@ void BOPAlgo_PaveFiller::PutPaveOnCurve (const Standard_Integer nV, const Standard_Real aTolR3D, const BOPDS_Curve& aNC, - const BOPCol_MapOfInteger& aMI, - BOPCol_DataMapOfIntegerReal& aMVTol, - BOPCol_DataMapOfIntegerListOfInteger& aDMVLV, + const TColStd_MapOfInteger& aMI, + TColStd_DataMapOfIntegerReal& aMVTol, + TColStd_DataMapOfIntegerListOfInteger& aDMVLV, const Standard_Integer iCheckExtend) { Standard_Boolean bIsVertexOnLine; @@ -2131,9 +2130,9 @@ void BOPAlgo_PaveFiller::PutPaveOnCurve bExist = aPB->ContainsParameter(aT, aPTol, nVUsed); if (bExist) { // use existing pave - BOPCol_ListOfInteger* pList = aDMVLV.ChangeSeek(nVUsed); + TColStd_ListOfInteger* pList = aDMVLV.ChangeSeek(nVUsed); if (!pList) { - pList = aDMVLV.Bound(nVUsed, BOPCol_ListOfInteger()); + pList = aDMVLV.Bound(nVUsed, TColStd_ListOfInteger()); pList->Append(nVUsed); if (!aMVTol.IsBound(nVUsed)) { const TopoDS_Vertex& aVUsed = (*(TopoDS_Vertex *)(&myDS->Shape(nVUsed))); @@ -2142,7 +2141,7 @@ void BOPAlgo_PaveFiller::PutPaveOnCurve } } // avoid repeated elements in the list - BOPCol_ListIteratorOfListOfInteger aItLI(*pList); + TColStd_ListIteratorOfListOfInteger aItLI(*pList); for (; aItLI.More(); aItLI.Next()) { if (aItLI.Value() == nV) { break; @@ -2191,9 +2190,9 @@ void BOPAlgo_PaveFiller::PutPaveOnCurve void BOPAlgo_PaveFiller::ProcessExistingPaveBlocks (const Standard_Integer theInt, const BOPDS_IndexedMapOfPaveBlock& aMPBOnIn, - const BOPCol_DataMapOfIntegerListOfInteger& aDMBV, + const TColStd_DataMapOfIntegerListOfInteger& aDMBV, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& aMSCPB, - BOPCol_DataMapOfShapeInteger& aMVI, + TopTools_DataMapOfShapeInteger& aMVI, BOPDS_MapOfPaveBlock& aMPB) { if (aDMBV.IsEmpty()) { @@ -2202,8 +2201,8 @@ void BOPAlgo_PaveFiller::ProcessExistingPaveBlocks // Standard_Real aT, dummy; Standard_Integer i, nV, nE, iC, aNbPB, iFlag; - BOPCol_ListIteratorOfListOfInteger aItLI; - BOPCol_DataMapIteratorOfDataMapOfIntegerListOfInteger aItBV; + TColStd_ListIteratorOfListOfInteger aItLI; + TColStd_DataMapIteratorOfDataMapOfIntegerListOfInteger aItBV; // BOPDS_VectorOfInterfFF& aFFs = myDS->InterfFF(); BOPDS_InterfFF& aFF = aFFs(theInt); @@ -2214,7 +2213,7 @@ void BOPAlgo_PaveFiller::ProcessExistingPaveBlocks aItBV.Initialize(aDMBV); for (; aItBV.More(); aItBV.Next()) { iC = aItBV.Key(); - const BOPCol_ListOfInteger& aLBV = aItBV.Value(); + const TColStd_ListOfInteger& aLBV = aItBV.Value(); // BOPDS_Curve& aNC = aVC.ChangeValue(iC); BOPDS_ListOfPaveBlock& aLPBC = aNC.ChangePaveBlocks(); @@ -2319,7 +2318,7 @@ void BOPAlgo_PaveFiller::UpdateExistingPaveBlocks if (bCB) { // Create new common blocks BOPDS_ListOfPaveBlock aLPBNew; - const BOPCol_ListOfInteger& aFaces = aCB1->Faces(); + const TColStd_ListOfInteger& aFaces = aCB1->Faces(); aIt.Initialize(aLPB); for (; aIt.More(); aIt.Next()) { const Handle(BOPDS_PaveBlock)& aPBValue = aIt.Value(); @@ -2542,7 +2541,7 @@ void BOPAlgo_PaveFiller::PreparePostTreatFF const Standard_Integer aCur, const Handle(BOPDS_PaveBlock)& aPB, BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks& aMSCPB, - BOPCol_DataMapOfShapeInteger& aMVI, + TopTools_DataMapOfShapeInteger& aMVI, BOPDS_ListOfPaveBlock& aLPBC) { Standard_Integer nV1, nV2; @@ -2574,19 +2573,19 @@ Standard_Boolean BOPAlgo_PaveFiller::CheckPlanes { Standard_Boolean bToIntersect; Standard_Integer i, nV2, iCnt; - BOPCol_MapIteratorOfMapOfInteger aIt; + TColStd_MapIteratorOfMapOfInteger aIt; // bToIntersect=Standard_False; // const BOPDS_FaceInfo& aFI1=myDS->ChangeFaceInfo(nF1); const BOPDS_FaceInfo& aFI2=myDS->ChangeFaceInfo(nF2); // - const BOPCol_MapOfInteger& aMVIn1=aFI1.VerticesIn(); - const BOPCol_MapOfInteger& aMVOn1=aFI1.VerticesOn(); + const TColStd_MapOfInteger& aMVIn1=aFI1.VerticesIn(); + const TColStd_MapOfInteger& aMVOn1=aFI1.VerticesOn(); // iCnt=0; for (i=0; (i<2 && !bToIntersect); ++i) { - const BOPCol_MapOfInteger& aMV2=(!i) ? aFI2.VerticesIn() + const TColStd_MapOfInteger& aMV2=(!i) ? aFI2.VerticesIn() : aFI2.VerticesOn(); // aIt.Initialize(aMV2); @@ -2609,7 +2608,7 @@ Standard_Boolean BOPAlgo_PaveFiller::CheckPlanes //purpose : //======================================================================= void BOPAlgo_PaveFiller::UpdatePaveBlocks -(const BOPCol_DataMapOfIntegerInteger& aDMNewSD) +(const TColStd_DataMapOfIntegerInteger& aDMNewSD) { if (aDMNewSD.IsEmpty()) { return; @@ -2620,18 +2619,18 @@ void BOPAlgo_PaveFiller::UpdatePaveBlocks Standard_Boolean bCB, bRebuild; BOPDS_ListIteratorOfListOfPaveBlock aItPB; BOPDS_MapOfPaveBlock aMPB; - BOPCol_MapOfInteger aMicroEdges; + TColStd_MapOfInteger aMicroEdges; // BOPDS_ListOfPaveBlock anAllPBs; // Get pave blocks of section edges BOPDS_VectorOfInterfFF& aFFs = myDS->InterfFF(); - Standard_Integer aNbFF = aFFs.Extent(); + Standard_Integer aNbFF = aFFs.Length(); for (i = 0; i < aNbFF; ++i) { const BOPDS_InterfFF& aFF = aFFs(i); const BOPDS_VectorOfCurve& aVNC = aFF.Curves(); - Standard_Integer aNbC = aVNC.Extent(); + Standard_Integer aNbC = aVNC.Length(); for (j = 0; j < aNbC; ++j) { const BOPDS_Curve& aNC = aVNC(j); @@ -2644,7 +2643,7 @@ void BOPAlgo_PaveFiller::UpdatePaveBlocks // Get pave blocks from the pool BOPDS_VectorOfListOfPaveBlock& aPBP = myDS->ChangePaveBlocksPool(); - aNbPBP = aPBP.Extent(); + aNbPBP = aPBP.Length(); for (i = 0; i < aNbPBP; ++i) { BOPDS_ListOfPaveBlock& aLPB = aPBP(i); aItPB.Initialize(aLPB); @@ -2726,13 +2725,13 @@ void BOPAlgo_PaveFiller::UpdatePaveBlocks //function : RemovePaveBlocks //purpose : //======================================================================= -void BOPAlgo_PaveFiller::RemovePaveBlocks(const BOPCol_MapOfInteger theEdges) +void BOPAlgo_PaveFiller::RemovePaveBlocks(const TColStd_MapOfInteger theEdges) { // Remove all pave blocks referring to input edges: // // 1. from the Pave Blocks Pool BOPDS_VectorOfListOfPaveBlock& aPBP = myDS->ChangePaveBlocksPool(); - Standard_Integer aNbPBP = aPBP.Extent(), i; + Standard_Integer aNbPBP = aPBP.Length(), i; for (i = 0; i < aNbPBP; ++i) { BOPDS_ListOfPaveBlock& aLPB = aPBP(i); // @@ -2747,9 +2746,9 @@ void BOPAlgo_PaveFiller::RemovePaveBlocks(const BOPCol_MapOfInteger theEdges) } // 2. from Face Info and section curves - BOPCol_MapOfInteger aMPassed; + TColStd_MapOfInteger aMPassed; BOPDS_VectorOfInterfFF& aFFs = myDS->InterfFF(); - Standard_Integer aNbFF = aFFs.Extent(), j; + Standard_Integer aNbFF = aFFs.Length(), j; for (i = 0; i < aNbFF; ++i) { BOPDS_InterfFF& aFF = aFFs(i); Standard_Integer nF1, nF2; @@ -2783,7 +2782,7 @@ void BOPAlgo_PaveFiller::RemovePaveBlocks(const BOPCol_MapOfInteger theEdges) } // remove from Section pave blocks BOPDS_VectorOfCurve& aVNC = aFF.ChangeCurves(); - Standard_Integer aNbC = aVNC.Extent(); + Standard_Integer aNbC = aVNC.Length(); for (j = 0; j < aNbC; ++j) { BOPDS_Curve& aNC = aVNC(j); BOPDS_ListOfPaveBlock& aLPB = aNC.ChangePaveBlocks(); @@ -2841,7 +2840,7 @@ void BOPAlgo_PaveFiller::UpdateBlocksWithSharedVertices() Standard_Integer aNbFF; // BOPDS_VectorOfInterfFF& aFFs=myDS->InterfFF(); - aNbFF=aFFs.Extent(); + aNbFF=aFFs.Length(); if (!aNbFF) { return; } @@ -2849,13 +2848,13 @@ void BOPAlgo_PaveFiller::UpdateBlocksWithSharedVertices() Standard_Boolean bOnCurve, bHasShapeSD; Standard_Integer i, nF1, nF2, aNbC, j, nV, nVSD; Standard_Real aTolV; - BOPCol_MapOfInteger aMF; + TColStd_MapOfInteger aMF; // for (i=0; iaMI; - BOPCol_MapOfInteger aMI; - BOPCol_MapIteratorOfMapOfInteger aItMI; + TColStd_MapOfInteger aMI; + TColStd_MapIteratorOfMapOfInteger aItMI; // BOPDS_FaceInfo& aFI1=myDS->ChangeFaceInfo(nF1); BOPDS_FaceInfo& aFI2=myDS->ChangeFaceInfo(nF2); // - const BOPCol_MapOfInteger& aMVOn1=aFI1.VerticesOn(); - const BOPCol_MapOfInteger& aMVIn1=aFI1.VerticesIn(); - const BOPCol_MapOfInteger& aMVOn2=aFI2.VerticesOn(); - const BOPCol_MapOfInteger& aMVIn2=aFI2.VerticesIn(); + const TColStd_MapOfInteger& aMVOn1=aFI1.VerticesOn(); + const TColStd_MapOfInteger& aMVIn1=aFI1.VerticesIn(); + const TColStd_MapOfInteger& aMVOn2=aFI2.VerticesOn(); + const TColStd_MapOfInteger& aMVIn2=aFI2.VerticesIn(); // for (j=0; j<2; ++j) { - const BOPCol_MapOfInteger& aMV1=(!j) ? aMVOn1 : aMVIn1; + const TColStd_MapOfInteger& aMV1=(!j) ? aMVOn1 : aMVIn1; aItMI.Initialize(aMV1); for (; aItMI.More(); aItMI.Next()) { nV=aItMI.Value(); @@ -2951,17 +2950,17 @@ void BOPAlgo_PaveFiller::CorrectToleranceOfSE() { BOPDS_VectorOfInterfFF& aFFs = myDS->InterfFF(); NCollection_IndexedDataMap aMVIPBs; - BOPCol_MapOfInteger aMVIToReduce; + TColStd_MapOfInteger aMVIToReduce; // Fence map to avoid repeated checking of the same edge BOPDS_MapOfPaveBlock aMPB; // // 1. iterate on all sections F-F - Standard_Integer aNb = aFFs.Extent(), i; + Standard_Integer aNb = aFFs.Length(), i; for (i = 0; i < aNb; ++i) { BOPDS_InterfFF& aFF = aFFs(i); // BOPDS_VectorOfCurve& aVNC = aFF.ChangeCurves(); - Standard_Integer aNbC = aVNC.Extent(), k; + Standard_Integer aNbC = aVNC.Length(), k; for (k = 0; k < aNbC; ++k) { BOPDS_Curve& aNC = aVNC(k); BOPDS_ListOfPaveBlock& aLPB = aNC.ChangePaveBlocks(); @@ -3029,9 +3028,9 @@ void BOPAlgo_PaveFiller::CorrectToleranceOfSE() // reducing the tolerance to the value less than the tolerances of edges, // i.e. minimal tolerance for the vertex is the max tolerance of the // edges containing this vertex - BOPCol_DataMapOfIntegerReal aMVITol; + TColStd_DataMapOfIntegerReal aMVITol; BOPDS_VectorOfListOfPaveBlock& aPBP = myDS->ChangePaveBlocksPool(); - aNb = aPBP.Extent(); + aNb = aPBP.Length(); for (i = 0; i < aNb; ++i) { const BOPDS_ListOfPaveBlock& aLPB = aPBP(i); BOPDS_ListIteratorOfListOfPaveBlock aItLPB(aLPB); @@ -3130,11 +3129,11 @@ void BOPAlgo_PaveFiller::PutSEInOtherFaces() BOPDS_IndexedMapOfPaveBlock aMPBScAll; // BOPDS_VectorOfInterfFF& aFFs = myDS->InterfFF(); - Standard_Integer i, j, aNbFF = aFFs.Extent(); + Standard_Integer i, j, aNbFF = aFFs.Length(); // for (i = 0; i < aNbFF; ++i) { const BOPDS_VectorOfCurve& aVNC = aFFs(i).Curves(); - Standard_Integer aNbC = aVNC.Extent(); + Standard_Integer aNbC = aVNC.Length(); for (j = 0; j < aNbC; ++j) { const BOPDS_ListOfPaveBlock& aLPBC = aVNC(j).PaveBlocks(); BOPDS_ListIteratorOfListOfPaveBlock aItPB(aLPBC); @@ -3164,7 +3163,7 @@ void BOPAlgo_PaveFiller::PutSEInOtherFaces() // // Get vertices of the face to check that vertices of the // processed section edge belong to the face - BOPCol_MapOfInteger aMFVerts; + TColStd_MapOfInteger aMFVerts; // Get vertices from ON, IN and Sc pave blocks of the face for (j = 0; j < 3; ++j) { const BOPDS_IndexedMapOfPaveBlock& aMPB = @@ -3178,9 +3177,9 @@ void BOPAlgo_PaveFiller::PutSEInOtherFaces() } // Add ON, IN and Sc vertices of the face for (j = 0; j < 3; ++j) { - const BOPCol_MapOfInteger& aMFV = !j ? aFI.VerticesOn() : + const TColStd_MapOfInteger& aMFV = !j ? aFI.VerticesOn() : (j == 1 ? aFI.VerticesIn() : aFI.VerticesSc()); - BOPCol_MapIteratorOfMapOfInteger aItMI(aMFV); + TColStd_MapIteratorOfMapOfInteger aItMI(aMFV); for (; aItMI.More(); aItMI.Next()) { aMFVerts.Add(aItMI.Value()); } diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx index 0e4a2e72cd..e614b7f315 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx @@ -19,9 +19,6 @@ #include #include #include -#include -#include -#include #include #include #include @@ -40,6 +37,7 @@ #include #include #include +#include #include #include #include @@ -54,12 +52,14 @@ #include #include #include +#include #include #include #include #include #include #include +#include static @@ -168,16 +168,16 @@ class BOPAlgo_SplitEdge : public BOPAlgo_Algo { }; // //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfSplitEdge; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_SplitEdgeFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_SplitEdgeCnt; @@ -332,16 +332,16 @@ class BOPAlgo_MPC : public BOPAlgo_Algo { }; // //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfMPC; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_MPCFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_MPCCnt; @@ -390,14 +390,14 @@ class BOPAlgo_BPC { Standard_Boolean myToUpdate; }; //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfBPC; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_BPCFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_BPCCnt; // @@ -409,7 +409,7 @@ typedef BOPCol_Cnt void BOPAlgo_PaveFiller::MakeSplitEdges() { BOPDS_VectorOfListOfPaveBlock& aPBP=myDS->ChangePaveBlocksPool(); - Standard_Integer aNbPBP = aPBP.Extent(); + Standard_Integer aNbPBP = aPBP.Length(); if(!aNbPBP) { return; } @@ -427,7 +427,7 @@ void BOPAlgo_PaveFiller::MakeSplitEdges() // UpdateCommonBlocksWithSDVertices(); // - aNbPBP=aPBP.Extent(); + aNbPBP=aPBP.Length(); // for (i=0; iShape(nV2))); aV2.Orientation(TopAbs_REVERSED); // - BOPAlgo_SplitEdge& aBSE=aVBSE.Append1(); + BOPAlgo_SplitEdge& aBSE=aVBSE.Appended(); // aBSE.SetData(aE, aV1, aT1, aV2, aT2); aBSE.SetPaveBlock(aPB); @@ -503,7 +503,7 @@ void BOPAlgo_PaveFiller::MakeSplitEdges() } // for (; aItPB.More(); aItPB.Next()) { } // for (i=0; iFaceInfoPool(); // - aNbFI=aFIP.Extent(); + aNbFI=aFIP.Length(); for (i=0; iEdge(); const TopoDS_Edge& aE=(*(TopoDS_Edge *)(&myDS->Shape(nE))); // - BOPAlgo_MPC& aMPC=aVMPC.Append1(); + BOPAlgo_MPC& aMPC=aVMPC.Appended(); aMPC.SetEdge(aE); aMPC.SetFace(aF1F); aMPC.SetProgressIndicator(myProgressIndicator); @@ -635,7 +635,7 @@ void BOPAlgo_PaveFiller::MakePCurves() continue; } // - BOPAlgo_MPC& aMPC=aVMPC.Append1(); + BOPAlgo_MPC& aMPC=aVMPC.Appended(); // aItLPB.Initialize(aLPB); for(; aItLPB.More(); aItLPB.Next()) { @@ -689,11 +689,11 @@ void BOPAlgo_PaveFiller::MakePCurves() // container to remember already added edge-face pairs BOPDS_MapOfPair anEFPairs; BOPDS_VectorOfInterfFF& aFFs=myDS->InterfFF(); - aNbFF=aFFs.Extent(); + aNbFF=aFFs.Length(); for (i=0; i #include -#include #include #include #include @@ -40,6 +39,7 @@ #include #include #include +#include #include #include #include @@ -67,7 +67,7 @@ void BOPAlgo_PaveFiller::ProcessDE() Standard_Integer nF, aNb, nE, nV, nVSD, aNbPB; Handle(NCollection_BaseAllocator) aAllocator; Handle(BOPDS_PaveBlock) aPBD; - BOPCol_ListIteratorOfListOfInteger aItLI; + TColStd_ListIteratorOfListOfInteger aItLI; // // 1. Find degnerated edges //-----------------------------------------------------scope f diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_9.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller_9.cxx index 84fca4e426..f55902a129 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller_9.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller_9.cxx @@ -16,18 +16,18 @@ #include #include #include -#include -#include -#include #include #include #include #include #include #include +#include #include #include #include +#include +#include #include #include #include @@ -63,16 +63,16 @@ class BOPAlgo_ShrunkRange : public IntTools_ShrunkRange { }; // //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfShrunkRange; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_ShrunkRangeFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_ShrunkRangeCnt; @@ -93,7 +93,7 @@ void BOPAlgo_PaveFiller::FillShrunkData(const TopAbs_ShapeEnum aType1, Standard_Integer i, nS[2], nE, nV1, nV2, aNbVSD, k; Standard_Real aT1, aT2; BOPDS_ListIteratorOfListOfPaveBlock aItLPB; - BOPCol_MapOfInteger aMI; + TColStd_MapOfInteger aMI; BOPAlgo_VectorOfShrunkRange aVSD; TopAbs_ShapeEnum aType[2] = { aType1, aType2 }; // @@ -131,7 +131,7 @@ void BOPAlgo_PaveFiller::FillShrunkData(const TopAbs_ShapeEnum aType1, const TopoDS_Vertex& aV2= (*(TopoDS_Vertex *)(&myDS->Shape(nV2))); // - BOPAlgo_ShrunkRange& aSD=aVSD.Append1(); + BOPAlgo_ShrunkRange& aSD=aVSD.Appended(); // aSD.SetPaveBlock(aPB); aSD.SetData(aE, aT1, aT2, aV1, aV2); @@ -139,7 +139,7 @@ void BOPAlgo_PaveFiller::FillShrunkData(const TopAbs_ShapeEnum aType1, } } // - aNbVSD=aVSD.Extent(); + aNbVSD=aVSD.Length(); //============================================================= BOPAlgo_ShrunkRangeCnt::Perform(myRunParallel, aVSD, myContext); //============================================================= diff --git a/src/BOPAlgo/BOPAlgo_Section.cxx b/src/BOPAlgo/BOPAlgo_Section.cxx index dd5eba58b8..4a9cde8f43 100644 --- a/src/BOPAlgo/BOPAlgo_Section.cxx +++ b/src/BOPAlgo/BOPAlgo_Section.cxx @@ -13,15 +13,10 @@ // commercial license or contractual agreement. -#include -#include #include #include -#include -#include -#include -#include -#include +#include +#include #include #include #include @@ -30,20 +25,23 @@ #include #include #include -#include #include #include #include #include #include +#include #include #include #include #include #include +#include +#include +#include +#include +#include -// -// //======================================================================= //function : //purpose : @@ -158,12 +156,14 @@ void BOPAlgo_Section::BuildSection() TopoDS_Shape aRC, aRC1; BRep_Builder aBB; TopExp_Explorer aExp; - BOPCol_ListOfShape aLSA, aLS; - BOPCol_ListIteratorOfListOfShape aIt, aItIm, aItLS; - BOPCol_IndexedDataMapOfShapeInteger aMSI(100, myAllocator); - BOPCol_IndexedMapOfShape aMS(100, myAllocator); - BOPCol_MapOfShape aMFence(100, myAllocator); - BOPCol_MapIteratorOfMapOfInteger aItMI; + TopTools_ListOfShape aLSA, aLS; + TopTools_ListIteratorOfListOfShape aIt, aItIm, aItLS; + NCollection_IndexedDataMap aMSI(100, myAllocator); + TopTools_IndexedMapOfShape aMS(100, myAllocator); + TopTools_MapOfShape aMFence(100, myAllocator); + TColStd_MapIteratorOfMapOfInteger aItMI; BOPDS_ListIteratorOfListOfPaveBlock aItPB; // GetReport()->Clear(); @@ -181,7 +181,7 @@ void BOPAlgo_Section::BuildSection() const BOPDS_FaceInfo& aFI=myDS->FaceInfo(i); // // 1.1 Vertices that are section vertices - const BOPCol_MapOfInteger& aMVSc=aFI.VerticesSc(); + const TColStd_MapOfInteger& aMVSc=aFI.VerticesSc(); aItMI.Initialize(aMVSc); for(; aItMI.More(); aItMI.Next()) { nV=aItMI.Key(); @@ -190,7 +190,7 @@ void BOPAlgo_Section::BuildSection() } // // 1.2 Vertices that are in a face - const BOPCol_MapOfInteger& aMI=aFI.VerticesIn(); + const TColStd_MapOfInteger& aMI=aFI.VerticesIn(); aItMI.Initialize(aMI); for(; aItMI.More(); aItMI.Next()) { nV=aItMI.Key(); @@ -226,7 +226,7 @@ void BOPAlgo_Section::BuildSection() const Handle(BOPDS_PaveBlock)& aPB=aItPB.Value(); Handle(BOPDS_CommonBlock) aCB=myDS->CommonBlock(aPB); if (!aCB.IsNull()) { - const BOPCol_ListOfInteger& aLF=aCB->Faces(); + const TColStd_ListOfInteger& aLF=aCB->Faces(); aNbF=aLF.Extent(); if (aNbF) { const Handle(BOPDS_PaveBlock)& aPBR=aCB->PaveBlock1(); @@ -280,17 +280,17 @@ void BOPAlgo_Section::BuildSection() const TopoDS_Shape& aS=aItLS.Value(); // if (myImages.IsBound(aS)){ - const BOPCol_ListOfShape& aLSIm=myImages.Find(aS); + const TopTools_ListOfShape& aLSIm=myImages.Find(aS); aItIm.Initialize(aLSIm); for (; aItIm.More(); aItIm.Next()) { const TopoDS_Shape& aSIm=aItIm.Value(); - BOPTools::MapShapes(aSIm, TopAbs_VERTEX, aMS); - BOPTools::MapShapes(aSIm, TopAbs_EDGE , aMS); + TopExp::MapShapes(aSIm, TopAbs_VERTEX, aMS); + TopExp::MapShapes(aSIm, TopAbs_EDGE , aMS); } }// if (myImages.IsBound(aF)){ else { - BOPTools::MapShapes(aS, TopAbs_VERTEX, aMS); - BOPTools::MapShapes(aS, TopAbs_EDGE , aMS); + TopExp::MapShapes(aS, TopAbs_VERTEX, aMS); + TopExp::MapShapes(aS, TopAbs_EDGE , aMS); } }//for (; aItLS.More(); aItLS.Next()) { // @@ -311,9 +311,9 @@ void BOPAlgo_Section::BuildSection() aMFence.Clear(); // // 4. Build the result - BOPCol_IndexedDataMapOfShapeListOfShape aMVE(100, myAllocator); + TopTools_IndexedDataMapOfShapeListOfShape aMVE(100, myAllocator); // - BOPTools::MapShapesAndAncestors(aRC1, + TopExp::MapShapesAndAncestors(aRC1, TopAbs_VERTEX, TopAbs_EDGE, aMVE); @@ -323,7 +323,7 @@ void BOPAlgo_Section::BuildSection() const TopoDS_Shape& aV=aMSI.FindKey(i); const Standard_Integer& iCnt=aMSI.FindFromIndex(i); if (iCnt>1) { - BOPTools::MapShapesAndAncestors(aV, + TopExp::MapShapesAndAncestors(aV, TopAbs_VERTEX, TopAbs_EDGE, aMVE); @@ -335,7 +335,7 @@ void BOPAlgo_Section::BuildSection() aNbMS=aMVE.Extent(); for (i=1; i<=aNbMS; ++i) { const TopoDS_Shape& aV=aMVE.FindKey(i); - const BOPCol_ListOfShape& aLE=aMVE.FindFromIndex(i); + const TopTools_ListOfShape& aLE=aMVE.FindFromIndex(i); aNbLE=aLE.Extent(); if (!aNbLE) { // alone vertices diff --git a/src/BOPAlgo/BOPAlgo_Section.hxx b/src/BOPAlgo/BOPAlgo_Section.hxx index d0c128171a..a62873ed21 100644 --- a/src/BOPAlgo/BOPAlgo_Section.hxx +++ b/src/BOPAlgo/BOPAlgo_Section.hxx @@ -20,7 +20,7 @@ #include #include -#include +#include #include class BOPAlgo_PaveFiller; class TopoDS_Shape; @@ -47,7 +47,7 @@ public: //! Empty constructor //! //! protected methods - Standard_EXPORT BOPAlgo_Section(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_Section(const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT virtual void BuildSection(); diff --git a/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx b/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx index fa39aa2064..06a86b0d96 100644 --- a/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx +++ b/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx @@ -16,32 +16,32 @@ // Created: Thu Jan 16 08:33:50 2014 #include -#include -#include -#include -#include -#include -#include -#include #include #include +#include #include #include +#include +#include #include #include #include #include #include +#include +#include +#include +#include // static - void MakeShell(const BOPCol_ListOfShape& , + void MakeShell(const TopTools_ListOfShape& , TopoDS_Shell& ); // static void RefineShell(TopoDS_Shell& theShell, - const BOPCol_IndexedDataMapOfShapeListOfShape& theMEF, - BOPCol_ListOfShape& aLShX); + const TopTools_IndexedDataMapOfShapeListOfShape& theMEF, + TopTools_ListOfShape& aLShX); //======================================================================= //class : BOPAlgo_CBK @@ -71,14 +71,14 @@ class BOPAlgo_CBK { BOPTools_ConnexityBlock *myPCB; }; //======================================================================= -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfCBK; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_CBKFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_CBKCnt; // @@ -126,7 +126,7 @@ void BOPAlgo_ShellSplitter::AddStartElement(const TopoDS_Shape& aE) //function : StartElements //purpose : //======================================================================= -const BOPCol_ListOfShape& BOPAlgo_ShellSplitter::StartElements()const +const TopTools_ListOfShape& BOPAlgo_ShellSplitter::StartElements()const { return myStartShapes; } @@ -134,7 +134,7 @@ const BOPCol_ListOfShape& BOPAlgo_ShellSplitter::StartElements()const //function : Loops //purpose : //======================================================================= -const BOPCol_ListOfShape& BOPAlgo_ShellSplitter::Shells()const +const TopTools_ListOfShape& BOPAlgo_ShellSplitter::Shells()const { return myShells; } @@ -165,21 +165,21 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) BRep_Builder aBB; TopoDS_Iterator aItS; TopExp_Explorer aExp; - BOPCol_ListIteratorOfListOfShape aItF; + TopTools_ListIteratorOfListOfShape aItF; BOPTools_CoupleOfShape aCSOff; - BOPCol_MapOfOrientedShape AddedFacesMap; - BOPCol_IndexedDataMapOfShapeListOfShape aEFMap, aMEFP; + TopTools_MapOfOrientedShape AddedFacesMap; + TopTools_IndexedDataMapOfShapeListOfShape aEFMap, aMEFP; Handle (IntTools_Context) aContext; // aContext=new IntTools_Context; // - const BOPCol_ListOfShape& myShapes=aCB.Shapes(); + const TopTools_ListOfShape& myShapes=aCB.Shapes(); // - BOPCol_ListOfShape& myLoops=aCB.ChangeLoops(); + TopTools_ListOfShape& myLoops=aCB.ChangeLoops(); myLoops.Clear(); // // Copy faces into the map, for recursive search of free bounds - BOPCol_MapOfOrientedShape aMFaces; + TopTools_MapOfOrientedShape aMFaces; aItF.Initialize (myShapes); for (; aItF.More(); aItF.Next()) { aMFaces.Add(aItF.Value()); @@ -193,7 +193,7 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) for (; aItF.More(); aItF.Next()) { const TopoDS_Shape& aF = aItF.Value(); if (aMFaces.Contains(aF)) { - BOPTools::MapShapesAndAncestors (aF, TopAbs_EDGE, TopAbs_FACE, aEFMap); + TopExp::MapShapesAndAncestors (aF, TopAbs_EDGE, TopAbs_FACE, aEFMap); } } // @@ -203,7 +203,7 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) for (i = 1; i <= aNbE; ++i) { const TopoDS_Edge& aE = TopoDS::Edge(aEFMap.FindKey(i)); if (!(BRep_Tool::Degenerated(aE) || aE.Orientation() == TopAbs_INTERNAL)) { - const BOPCol_ListOfShape& aLF = aEFMap(i); + const TopTools_ListOfShape& aLF = aEFMap(i); if (aLF.Extent() == 1) { // remove the face aMFaces.Remove(aLF.First()); @@ -223,7 +223,7 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) } // // use only connected faces - BOPCol_ListOfShape aLFConnected; + TopTools_ListOfShape aLFConnected; aItF.Initialize (myShapes); for (; aItF.More(); aItF.Next()) { const TopoDS_Shape& aF = aItF.Value(); @@ -248,15 +248,15 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) aBB.MakeShell(aShellStart); aBB.Add(aShellStart, aFF); // - BOPCol_ListOfShape aLShells; + TopTools_ListOfShape aLShells; aLShells.Append(aShellStart); // - BOPCol_ListIteratorOfListOfShape aItLShells(aLShells); + TopTools_ListIteratorOfListOfShape aItLShells(aLShells); for (; aItLShells.More(); aItLShells.Next()) { TopoDS_Shell& aShell = TopoDS::Shell(aItLShells.ChangeValue()); // aMEFP.Clear(); - BOPTools::MapShapesAndAncestors(aShell, TopAbs_EDGE, TopAbs_FACE, aMEFP); + TopExp::MapShapesAndAncestors(aShell, TopAbs_EDGE, TopAbs_FACE, aMEFP); // // loop on faces added to Shell; // add their neighbor faces to Shell and so on @@ -271,7 +271,7 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) // // proceed only free edges in this shell if (aMEFP.Contains(aE)) { - const BOPCol_ListOfShape& aLFP = aMEFP.FindFromKey(aE); + const TopTools_ListOfShape& aLFP = aMEFP.FindFromKey(aE); aNbFP = aLFP.Extent(); if (aNbFP > 1) { continue; @@ -288,7 +288,7 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) } // // candidate faces list - const BOPCol_ListOfShape& aLF = aEFMap.FindFromKey(aE); + const TopTools_ListOfShape& aLF = aEFMap.FindFromKey(aE); aNbLF = aLF.Extent(); if (!aNbLF) { continue; @@ -298,7 +298,7 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) // take only not-processed faces as a candidates BOPTools_ListOfCoupleOfShape aLCSOff; // - BOPCol_ListIteratorOfListOfShape aItLF(aLF); + TopTools_ListIteratorOfListOfShape aItLF(aLF); for (; aItLF.More(); aItLF.Next()) { const TopoDS_Face& aFL = (*(TopoDS_Face*)(&aItLF.Value())); if (aF.IsSame(aFL) || AddedFacesMap.Contains(aFL)) { @@ -332,19 +332,19 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) // if (!aSelF.IsNull() && AddedFacesMap.Add(aSelF)) { aBB.Add(aShell, aSelF); - BOPTools::MapShapesAndAncestors(aSelF, TopAbs_EDGE, TopAbs_FACE, aMEFP); + TopExp::MapShapesAndAncestors(aSelF, TopAbs_EDGE, TopAbs_FACE, aMEFP); } } // for (; aExp.More(); aExp.Next()) { } // for (; aItS.More(); aItS.Next()) { // // split the shell on multi-connected edges - BOPCol_ListOfShape aLShSp; + TopTools_ListOfShape aLShSp; RefineShell(aShell, aMEFP, aLShSp); // // collect the not closed shells for further processing - BOPCol_ListOfShape aLShNC; + TopTools_ListOfShape aLShNC; // - BOPCol_ListIteratorOfListOfShape aItLShSp(aLShSp); + TopTools_ListIteratorOfListOfShape aItLShSp(aLShSp); for (; aItLShSp.More(); aItLShSp.Next()) { TopoDS_Shell& aShSp = *((TopoDS_Shell*)&aItLShSp.Value()); // @@ -377,7 +377,7 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) // remove th faces of not closed shells from the map of processed faces // and try to rebuild the shells using all not processed faces, // because faces of one shell might be needed for building the other - BOPCol_ListIteratorOfListOfShape aItLShNC(aLShNC); + TopTools_ListIteratorOfListOfShape aItLShNC(aLShNC); for (; aItLShNC.More(); aItLShNC.Next()) { TopoDS_Iterator aItNC(aItLShNC.Value()); for (; aItNC.More(); aItNC.Next()) { @@ -393,8 +393,8 @@ void BOPAlgo_ShellSplitter::SplitBlock(BOPTools_ConnexityBlock& aCB) //purpose : //======================================================================= void RefineShell(TopoDS_Shell& theShell, - const BOPCol_IndexedDataMapOfShapeListOfShape& theMEF, - BOPCol_ListOfShape& theLShSp) + const TopTools_IndexedDataMapOfShapeListOfShape& theMEF, + TopTools_ListOfShape& theLShSp) { TopoDS_Iterator aIt(theShell); if(!aIt.More()) { @@ -403,12 +403,12 @@ void RefineShell(TopoDS_Shell& theShell, // // Find edges with more than 2 adjacent faces - branch edges - // edges on which the input shell should be split - BOPCol_MapOfShape aMEStop; + TopTools_MapOfShape aMEStop; // Standard_Integer i, aNbMEF = theMEF.Extent(); for (i = 1; i <= aNbMEF; ++i) { const TopoDS_Edge& aE = TopoDS::Edge(theMEF.FindKey(i)); - const BOPCol_ListOfShape& aLF = theMEF(i); + const TopTools_ListOfShape& aLF = theMEF(i); if (aLF.Extent() > 2) { aMEStop.Add(aE); continue; @@ -417,7 +417,7 @@ void RefineShell(TopoDS_Shell& theShell, // check for internal edges - count faces, in which the edge // is internal, twice Standard_Integer aNbF = 0; - BOPCol_ListIteratorOfListOfShape aItLF(aLF); + TopTools_ListIteratorOfListOfShape aItLF(aLF); for (; aItLF.More() && aNbF <= 2; aItLF.Next()) { const TopoDS_Face& aF = TopoDS::Face(aItLF.Value()); ++aNbF; @@ -445,10 +445,10 @@ void RefineShell(TopoDS_Shell& theShell, // TopoDS_Builder aBB; TopExp_Explorer aExp; - BOPCol_IndexedMapOfShape aMFB; - BOPCol_MapOfOrientedShape aMFProcessed; - BOPCol_ListOfShape aLFP, aLFP1; - BOPCol_ListIteratorOfListOfShape aItLF, aItLFP; + TopTools_IndexedMapOfShape aMFB; + TopTools_MapOfOrientedShape aMFProcessed; + TopTools_ListOfShape aLFP, aLFP1; + TopTools_ListIteratorOfListOfShape aItLF, aItLFP; // // The first Face for (; aIt.More(); aIt.Next()) { @@ -484,7 +484,7 @@ void RefineShell(TopoDS_Shell& theShell, continue; } // - const BOPCol_ListOfShape& aLF = theMEF.FindFromKey(aE); + const TopTools_ListOfShape& aLF = theMEF.FindFromKey(aE); // aItLF.Initialize(aLF); for (; aItLF.More(); aItLF.Next()) { @@ -535,7 +535,7 @@ void BOPAlgo_ShellSplitter::MakeShells() Standard_Boolean bIsRegular; Standard_Integer aNbVCBK, k; BOPTools_ListIteratorOfListOfConnexityBlock aItCB; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; BOPAlgo_VectorOfCBK aVCBK; // myShells.Clear(); @@ -547,25 +547,25 @@ void BOPAlgo_ShellSplitter::MakeShells() if (bIsRegular) { TopoDS_Shell aShell; // - const BOPCol_ListOfShape& aLF=aCB.Shapes(); + const TopTools_ListOfShape& aLF=aCB.Shapes(); MakeShell(aLF, aShell); aShell.Closed(Standard_True); myShells.Append(aShell); } else { - BOPAlgo_CBK& aCBK=aVCBK.Append1(); + BOPAlgo_CBK& aCBK=aVCBK.Appended(); aCBK.SetConnexityBlock(aCB); } } // - aNbVCBK=aVCBK.Extent(); + aNbVCBK=aVCBK.Length(); //=================================================== BOPAlgo_CBKCnt::Perform(myRunParallel, aVCBK); //=================================================== for (k=0; k #include -#include #include #include -#include #include +#include +#include class TopoDS_Shape; @@ -42,19 +42,19 @@ public: Standard_EXPORT virtual ~BOPAlgo_ShellSplitter(); //! constructor - Standard_EXPORT BOPAlgo_ShellSplitter(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_ShellSplitter(const Handle(NCollection_BaseAllocator)& theAllocator); //! adds a face to process Standard_EXPORT void AddStartElement (const TopoDS_Shape& theS); //! return the faces to process - Standard_EXPORT const BOPCol_ListOfShape& StartElements() const; + Standard_EXPORT const TopTools_ListOfShape& StartElements() const; //! performs the algorithm Standard_EXPORT virtual void Perform() Standard_OVERRIDE; //! returns the loops - Standard_EXPORT const BOPCol_ListOfShape& Shells() const; + Standard_EXPORT const TopTools_ListOfShape& Shells() const; Standard_EXPORT static void SplitBlock (BOPTools_ConnexityBlock& theCB); @@ -64,8 +64,8 @@ protected: Standard_EXPORT void MakeShells(); - BOPCol_ListOfShape myStartShapes; - BOPCol_ListOfShape myShells; + TopTools_ListOfShape myStartShapes; + TopTools_ListOfShape myShells; BOPTools_ListOfConnexityBlock myLCB; private: diff --git a/src/BOPAlgo/BOPAlgo_Splitter.cxx b/src/BOPAlgo/BOPAlgo_Splitter.cxx index 383565695a..b95c42431b 100644 --- a/src/BOPAlgo/BOPAlgo_Splitter.cxx +++ b/src/BOPAlgo/BOPAlgo_Splitter.cxx @@ -72,9 +72,9 @@ void BOPAlgo_Splitter::Perform() } // // prepare shapes for intersection - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; // - BOPCol_ListIteratorOfListOfShape aItLS(myArguments); + TopTools_ListIteratorOfListOfShape aItLS(myArguments); for (; aItLS.More(); aItLS.Next()) { aLS.Append(aItLS.Value()); } diff --git a/src/BOPAlgo/BOPAlgo_Splitter.hxx b/src/BOPAlgo/BOPAlgo_Splitter.hxx index 7e2fbad3bf..62a878989e 100644 --- a/src/BOPAlgo/BOPAlgo_Splitter.hxx +++ b/src/BOPAlgo/BOPAlgo_Splitter.hxx @@ -57,7 +57,7 @@ public: Standard_EXPORT BOPAlgo_Splitter(); Standard_EXPORT virtual ~BOPAlgo_Splitter(); - Standard_EXPORT BOPAlgo_Splitter(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_Splitter(const Handle(NCollection_BaseAllocator)& theAllocator); //! Performs the operation Standard_EXPORT virtual void Perform() Standard_OVERRIDE; diff --git a/src/BOPAlgo/BOPAlgo_Tools.cxx b/src/BOPAlgo/BOPAlgo_Tools.cxx index b3fde89676..1e6184990f 100644 --- a/src/BOPAlgo/BOPAlgo_Tools.cxx +++ b/src/BOPAlgo/BOPAlgo_Tools.cxx @@ -15,62 +15,48 @@ #include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -#include -#include - -#include -#include -#include -#include -#include -#include -#include - -#include - -#include - -#include - -#include -#include -#include - -#include - -#include -#include - #include #include - #include #include #include #include #include #include - -#include #include #include - -#include -#include - +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include @@ -80,11 +66,11 @@ typedef NCollection_IndexedDataMap BOPAlgo_IndexedDataMapOfShapePln; static - void MakeWires(const BOPCol_IndexedMapOfShape& theEdges, + void MakeWires(const TopTools_IndexedMapOfShape& theEdges, TopoDS_Compound& theWires, const Standard_Boolean theCheckUniquePlane, BOPAlgo_IndexedDataMapOfShapeDir& theDMEdgeTgt, - BOPCol_MapOfShape& theMEdgesNoUniquePlane); + TopTools_MapOfShape& theMEdgesNoUniquePlane); static Standard_Boolean FindPlane(const BRepAdaptor_Curve& theCurve, @@ -94,7 +80,7 @@ static Standard_Boolean FindPlane(const TopoDS_Shape& theWire, gp_Pln& thePlane, BOPAlgo_IndexedDataMapOfShapeDir& theDMEdgeTgt, - BOPCol_MapOfShape& theMEdgesNoUniquePlane); + TopTools_MapOfShape& theMEdgesNoUniquePlane); static Standard_Boolean FindEdgeTangent(const TopoDS_Edge& theEdge, @@ -114,9 +100,9 @@ void BOPAlgo_Tools::FillMap(const Handle(BOPDS_PaveBlock)& aPB, BOPDS_IndexedDataMapOfPaveBlockListOfInteger& aMPBLI, const Handle(NCollection_BaseAllocator)& aAllocator) { - BOPCol_ListOfInteger *pLI = aMPBLI.ChangeSeek(aPB); + TColStd_ListOfInteger *pLI = aMPBLI.ChangeSeek(aPB); if (!pLI) { - pLI = &aMPBLI(aMPBLI.Add(aPB, BOPCol_ListOfInteger(aAllocator))); + pLI = &aMPBLI(aMPBLI.Add(aPB, TColStd_ListOfInteger(aAllocator))); } pLI->Append(nF); } @@ -153,9 +139,9 @@ void BOPAlgo_Tools::PerformCommonBlocks(BOPDS_IndexedDataMapOfPaveBlockListOfPav // New common block Handle(BOPDS_CommonBlock) aCB; // Faces of the common block - BOPCol_ListOfInteger aLFaces; + TColStd_ListOfInteger aLFaces; // Fence map to avoid duplicates in the list of faces of the common block - BOPCol_MapOfInteger aMFaces(1, anAllocTmp); + TColStd_MapOfInteger aMFaces(1, anAllocTmp); BOPDS_ListIteratorOfListOfPaveBlock aItLPB(aLPB); for (; aItLPB.More(); aItLPB.Next()) @@ -165,7 +151,7 @@ void BOPAlgo_Tools::PerformCommonBlocks(BOPDS_IndexedDataMapOfPaveBlockListOfPav { const Handle(BOPDS_CommonBlock)& aCBx = pDS->CommonBlock(aPB); // Move all faces to the new common block - BOPCol_ListIteratorOfListOfInteger aItLF(aCBx->Faces()); + TColStd_ListIteratorOfListOfInteger aItLF(aCBx->Faces()); for (; aItLF.More(); aItLF.Next()) { const Standard_Integer nF = aItLF.Value(); @@ -196,7 +182,7 @@ void BOPAlgo_Tools::PerformCommonBlocks(const BOPDS_IndexedDataMapOfPaveBlockLis BOPDS_PDS& pDS) { Standard_Integer nF, i, aNb; - BOPCol_ListIteratorOfListOfInteger aItLI; + TColStd_ListIteratorOfListOfInteger aItLI; Handle(BOPDS_PaveBlock) aPB; Handle(BOPDS_CommonBlock) aCB; // @@ -211,15 +197,15 @@ void BOPAlgo_Tools::PerformCommonBlocks(const BOPDS_IndexedDataMapOfPaveBlockLis aCB->AddPaveBlock(aPB); } // - const BOPCol_ListOfInteger& aLI=aMPBLI.FindFromKey(aPB); - BOPCol_ListOfInteger aNewFaces; - const BOPCol_ListOfInteger& anOldFaces = aCB->Faces(); + const TColStd_ListOfInteger& aLI=aMPBLI.FindFromKey(aPB); + TColStd_ListOfInteger aNewFaces; + const TColStd_ListOfInteger& anOldFaces = aCB->Faces(); aItLI.Initialize(aLI); for (; aItLI.More(); aItLI.Next()) { nF=aItLI.Value(); // the both lists aLI and anOldFaces are expected to be short, // so we can allow to run nested loop here - BOPCol_ListIteratorOfListOfInteger it(anOldFaces); + TColStd_ListIteratorOfListOfInteger it(anOldFaces); for (; it.More(); it.Next()) { if (it.Value() == nF) break; @@ -252,7 +238,7 @@ Standard_Real BOPAlgo_Tools::ComputeToleranceOfCB aTolMax = BRep_Tool::Tolerance(aEOr); // const BOPDS_ListOfPaveBlock& aLPB = theCB->PaveBlocks(); - const BOPCol_ListOfInteger& aLFI = theCB->Faces(); + const TColStd_ListOfInteger& aLFI = theCB->Faces(); // if ((aLPB.Extent() < 2) && aLFI.IsEmpty()) { return aTolMax; @@ -305,7 +291,7 @@ Standard_Real BOPAlgo_Tools::ComputeToleranceOfCB if (aLFI.Extent()) { Standard_Integer nF; GeomAPI_ProjectPointOnSurf aProjPS; - BOPCol_ListIteratorOfListOfInteger aItLI; + TColStd_ListIteratorOfListOfInteger aItLI; // aItLI.Initialize(aLFI); for (; aItLI.More(); aItLI.Next()) { @@ -347,7 +333,7 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, // 1. Check the input edges // // List of edges to process - BOPCol_ListOfShape aLE; + TopTools_ListOfShape aLE; // TopExp_Explorer aExp(theEdges, TopAbs_EDGE); for (; aExp.More(); aExp.Next()) { @@ -394,7 +380,7 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, } else { aBB.MakeCompound(TopoDS::Compound(aSEdges)); - BOPCol_ListIteratorOfListOfShape aItLE(aLE); + TopTools_ListIteratorOfListOfShape aItLE(aLE); for (; aItLE.More(); aItLE.Next()) { aBB.Add(aSEdges, aItLE.Value()); } @@ -410,7 +396,7 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, BOPAlgo_IndexedDataMapOfShapeDir aDMEdgeTgt; // // edges for which the plane is not found - BOPCol_MapOfShape aMEdgesNoUniquePlane; + TopTools_MapOfShape aMEdgesNoUniquePlane; // // edges for which the plane cannot be found on a single edge TopoDS_Compound aLEdges; @@ -442,7 +428,7 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, BOPAlgo_ListOfDir aLPFence; // // used edges - BOPCol_MapOfShape aMEFence; + TopTools_MapOfShape aMEFence; // // look for a planes on the single edges Standard_Integer i, j, aNbPlanes = aDMEdgePln.Extent(), aNbEdges = aDMEdgeTgt.Extent(); @@ -457,11 +443,11 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, // aLPFence.Append(aDI); // - BOPCol_IndexedMapOfShape aMEPln; + TopTools_IndexedMapOfShape aMEPln; aMEPln.Add(aEI); // - BOPCol_IndexedMapOfShape aMV; - BOPTools::MapShapes(aEI, TopAbs_VERTEX, aMV); + TopTools_IndexedMapOfShape aMV; + TopExp::MapShapes(aEI, TopAbs_VERTEX, aMV); // // look for other edges with the plane parallel to current one for (j = i + 1; j <= aNbPlanes; ++j) { @@ -470,7 +456,7 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, const TopoDS_Shape& aEJ = aDMEdgePln.FindKey(j); aMEPln.Add(aEJ); aMEFence.Add(aEJ); - BOPTools::MapShapes(aEJ, TopAbs_VERTEX, aMV); + TopExp::MapShapes(aEJ, TopAbs_VERTEX, aMV); } } // @@ -487,11 +473,11 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, // // make blocks of these edges and check blocks to be connected // to any of the already added edges or forming a wire themselves - BOPCol_ListOfShape aLCBE; + TopTools_ListOfShape aLCBE; BOPTools_AlgoTools::MakeConnexityBlocks(aCEPln, TopAbs_VERTEX, TopAbs_EDGE, aLCBE); // // make wire from each block - BOPCol_ListIteratorOfListOfShape aItLCB(aLCBE); + TopTools_ListIteratorOfListOfShape aItLCB(aLCBE); for (; aItLCB.More(); aItLCB.Next()) { const TopoDS_Shape& aCBE = aItLCB.Value(); // @@ -522,23 +508,23 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, } // // make connection map from vertices to edges to find the connected pairs - BOPCol_IndexedDataMapOfShapeListOfShape aDMVE; - BOPTools::MapShapesAndAncestors(aLEdges, TopAbs_VERTEX, TopAbs_EDGE, aDMVE); + TopTools_IndexedDataMapOfShapeListOfShape aDMVE; + TopExp::MapShapesAndAncestors(aLEdges, TopAbs_VERTEX, TopAbs_EDGE, aDMVE); // // find planes for connected edges Standard_Integer aNbV = aDMVE.Extent(); for (i = 1; i <= aNbV; ++i) { - const BOPCol_ListOfShape& aLEI = aDMVE(i); + const TopTools_ListOfShape& aLEI = aDMVE(i); if (aLEI.Extent() < 2) { continue; } // - BOPCol_ListIteratorOfListOfShape aItLEI1(aLEI); + TopTools_ListIteratorOfListOfShape aItLEI1(aLEI); for (; aItLEI1.More(); aItLEI1.Next()) { const TopoDS_Shape& aEI1 = aItLEI1.Value(); const gp_Dir& aDI1 = aDMEdgeTgt.FindFromKey(aEI1); // - BOPCol_ListIteratorOfListOfShape aItLEI2(aLEI); + TopTools_ListIteratorOfListOfShape aItLEI2(aLEI); for (; aItLEI2.More(); aItLEI2.Next()) { const TopoDS_Shape& aEI2 = aItLEI2.Value(); if (aEI2.IsSame(aEI1)) { @@ -567,7 +553,7 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, aLPFence.Append(aDNI); // // find all other edges in the plane parallel to current one - BOPCol_IndexedMapOfShape aMEPln; + TopTools_IndexedMapOfShape aMEPln; aMEPln.Add(aEI1); aMEPln.Add(aEI2); // @@ -585,8 +571,8 @@ Standard_Integer BOPAlgo_Tools::EdgesToWires(const TopoDS_Shape& theEdges, } // for (i = 1; i < aNb; ++i) { // // 4. Find unused edges and make wires from them - BOPCol_IndexedMapOfShape aMEAlone, aMEUsed; - BOPTools::MapShapes(aRWires, TopAbs_EDGE, aMEUsed); + TopTools_IndexedMapOfShape aMEAlone, aMEUsed; + TopExp::MapShapes(aRWires, TopAbs_EDGE, aMEUsed); // for (i = 1; i <= aNbEdges; ++i) { const TopoDS_Shape& aE = aDMEdgeTgt.FindKey(i); @@ -611,7 +597,7 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, const Standard_Real theAngTol) { BRep_Builder aBB; - BOPCol_MapOfShape aMFence; + TopTools_MapOfShape aMFence; TopoDS_Compound aRFaces; aBB.MakeCompound(aRFaces); // @@ -624,7 +610,7 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, // map to store the tolerance for the wire NCollection_DataMap aDMWireTol; // edges for which the plane is not found - BOPCol_MapOfShape aMEdgesNoUniquePlane; + TopTools_MapOfShape aMEdgesNoUniquePlane; // // Find planes for the wires TopExp_Explorer aExpW(theWires, TopAbs_WIRE); @@ -647,7 +633,7 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, // const gp_Pln& aPlnI = aDMWirePln(i); // - BOPCol_ListOfShape aLW; + TopTools_ListOfShape aLW; aLW.Append(aWireI); aMFence.Add(aWireI); // @@ -678,8 +664,8 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, } // // Take the edges to build the face - BOPCol_ListOfShape aLE; - BOPCol_ListIteratorOfListOfShape aItLW(aLW); + TopTools_ListOfShape aLE; + TopTools_ListIteratorOfListOfShape aItLW(aLW); for (; aItLW.More(); aItLW.Next()) { TopoDS_Iterator aItE(aItLW.Value()); for (; aItE.More(); aItE.Next()) { @@ -708,8 +694,8 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, continue; } // - const BOPCol_ListOfShape& aLFSp = aBF.Areas(); - BOPCol_ListIteratorOfListOfShape aItLF(aLFSp); + const TopTools_ListOfShape& aLFSp = aBF.Areas(); + TopTools_ListIteratorOfListOfShape aItLF(aLFSp); for (; aItLF.More(); aItLF.Next()) { const TopoDS_Shape& aFSp = aItLF.ChangeValue(); aBB.Add(aRFaces, aFSp); @@ -721,7 +707,7 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, } // // fix tolerances of the resulting faces - BOPCol_IndexedMapOfShape aMEmpty; + TopTools_IndexedMapOfShape aMEmpty; BOPTools_AlgoTools::CorrectTolerances(aRFaces, aMEmpty, 0.05, Standard_False); BOPTools_AlgoTools::CorrectShapeTolerances(aRFaces, aMEmpty, Standard_False); // @@ -734,11 +720,11 @@ Standard_Boolean BOPAlgo_Tools::WiresToFaces(const TopoDS_Shape& theWires, //function : MakeWires //purpose : Makes wires from the separate blocks of the given edges //======================================================================= -void MakeWires(const BOPCol_IndexedMapOfShape& theEdges, +void MakeWires(const TopTools_IndexedMapOfShape& theEdges, TopoDS_Compound& theWires, const Standard_Boolean theCheckUniquePlane, BOPAlgo_IndexedDataMapOfShapeDir& theDMEdgeTgt, - BOPCol_MapOfShape& theMEdgesNoUniquePlane) + TopTools_MapOfShape& theMEdgesNoUniquePlane) { TopoDS_Compound aCE; BRep_Builder().MakeCompound(aCE); @@ -747,11 +733,11 @@ void MakeWires(const BOPCol_IndexedMapOfShape& theEdges, BRep_Builder().Add(aCE, theEdges(i)); } // - BOPCol_ListOfShape aLCBE; + TopTools_ListOfShape aLCBE; BOPTools_AlgoTools::MakeConnexityBlocks(aCE, TopAbs_VERTEX, TopAbs_EDGE, aLCBE); // // make wire from each block - BOPCol_ListIteratorOfListOfShape aItLCB(aLCBE); + TopTools_ListIteratorOfListOfShape aItLCB(aLCBE); for (; aItLCB.More(); aItLCB.Next()) { const TopoDS_Shape& aCBE = aItLCB.Value(); // @@ -894,7 +880,7 @@ Standard_Boolean FindPlane(const BRepAdaptor_Curve& theCurve, Standard_Boolean FindPlane(const TopoDS_Shape& theWire, gp_Pln& thePlane, BOPAlgo_IndexedDataMapOfShapeDir& theDMEdgeTgt, - BOPCol_MapOfShape& theMEdgesNoUniquePlane) + TopTools_MapOfShape& theMEdgesNoUniquePlane) { TopExp_Explorer aExpE1(theWire, TopAbs_EDGE); if (!aExpE1.More()) { @@ -960,21 +946,21 @@ Standard_Boolean FindPlane(const TopoDS_Shape& theWire, //purpose : //======================================================================= class BOPAlgo_TNV; -typedef BOPCol_NCVector +typedef NCollection_Vector BOPAlgo_VectorOfTNV; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPAlgo_TNVFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPAlgo_TNVCnt; //======================================================================= -class BOPAlgo_TNV : public BOPCol_BoxBndTreeSelector{ +class BOPAlgo_TNV : public BOPTools_BoxBndTreeSelector{ public: BOPAlgo_TNV() - : BOPCol_BoxBndTreeSelector(), + : BOPTools_BoxBndTreeSelector(), myTol (0.), myFuzzyValue(0.), myTree(NULL), myVecTNV(NULL) { }; // @@ -990,7 +976,7 @@ class BOPAlgo_TNV : public BOPCol_BoxBndTreeSelector{ return myV; } // - void SetTree(BOPCol_BoxBndTree& aTree) { + void SetTree(BOPTools_BoxBndTree& aTree) { myTree=&aTree; } // @@ -1021,7 +1007,7 @@ class BOPAlgo_TNV : public BOPCol_BoxBndTreeSelector{ aTolSum2 *= aTolSum2; Standard_Real aD2 = myPnt.SquareDistance(aTNV.Pnt()); if (aD2 < aTolSum2) - return BOPCol_BoxBndTreeSelector::Accept(theIndex); + return BOPTools_BoxBndTreeSelector::Accept(theIndex); return Standard_False; } // @@ -1034,7 +1020,7 @@ class BOPAlgo_TNV : public BOPCol_BoxBndTreeSelector{ Standard_Real myFuzzyValue; gp_Pnt myPnt; TopoDS_Vertex myV; - BOPCol_BoxBndTree *myTree; + BOPTools_BoxBndTree *myTree; const BOPAlgo_VectorOfTNV *myVecTNV; }; // @@ -1044,21 +1030,21 @@ class BOPAlgo_TNV : public BOPCol_BoxBndTreeSelector{ //function : IntersectVertices //purpose : Builds the chains of intersecting vertices //======================================================================= -void BOPAlgo_Tools::IntersectVertices(const BOPCol_IndexedDataMapOfShapeReal& theVertices, +void BOPAlgo_Tools::IntersectVertices(const TopTools_IndexedDataMapOfShapeReal& theVertices, const Standard_Boolean theRunParallel, const Standard_Real theFuzzyValue, - BOPCol_ListOfListOfShape& theChains) + TopTools_ListOfListOfShape& theChains) { Standard_Integer i, j, aNbV = theVertices.Extent(); if (aNbV <= 1) { if (aNbV == 1) { - theChains.Append(BOPCol_ListOfShape()).Append(theVertices.FindKey(1)); + theChains.Append(TopTools_ListOfShape()).Append(theVertices.FindKey(1)); } return; } // // Use unbalanced binary tree of bounding boxes for sorting of the vertices. - BOPCol_BoxBndTree aBBTree; + BOPTools_BoxBndTree aBBTree; NCollection_UBTreeFiller aTreeFiller(aBBTree); // Perform intersection of the vertices @@ -1080,7 +1066,7 @@ void BOPAlgo_Tools::IntersectVertices(const BOPCol_IndexedDataMapOfShapeReal& th // aTreeFiller.Add(i, aBox); // - BOPAlgo_TNV& aTNV=aVTNV.Append1(); + BOPAlgo_TNV& aTNV=aVTNV.Appended(); aTNV.SetTree(aBBTree); aTNV.SetBox(aBox); aTNV.SetVertex(aV); @@ -1095,21 +1081,21 @@ void BOPAlgo_Tools::IntersectVertices(const BOPCol_IndexedDataMapOfShapeReal& th BOPAlgo_TNVCnt::Perform(theRunParallel, aVTNV); // // Fence map - BOPCol_MapOfInteger aMFence; + TColStd_MapOfInteger aMFence; // Build chains of intersecting vertices for (i = 1; i <= aNbV; ++i) { if (!aMFence.Add(i)) { continue; } // Start the chain - BOPCol_IndexedMapOfInteger aMChain; + TColStd_IndexedMapOfInteger aMChain; aMChain.Add(i); // for (j = 1; j <= aMChain.Extent(); ++j) { BOPAlgo_TNV& aTNV = aVTNV(aMChain(j) - 1); - const BOPCol_ListOfInteger& aLI = aTNV.Indices(); + const TColStd_ListOfInteger& aLI = aTNV.Indices(); // Add these vertices into the chain - for (BOPCol_ListIteratorOfListOfInteger aItLI(aLI); aItLI.More(); aItLI.Next()) { + for (TColStd_ListIteratorOfListOfInteger aItLI(aLI); aItLI.More(); aItLI.Next()) { if (aMFence.Add(aItLI.Value())) { aMChain.Add(aItLI.Value()); } @@ -1117,7 +1103,7 @@ void BOPAlgo_Tools::IntersectVertices(const BOPCol_IndexedDataMapOfShapeReal& th } // // Put vertices of the chain into the list - BOPCol_ListOfShape& aChain = theChains.Append(BOPCol_ListOfShape()); + TopTools_ListOfShape& aChain = theChains.Append(TopTools_ListOfShape()); // Standard_Integer aNbVChain = aMChain.Extent(); for (j = 1; j <= aNbVChain; ++j) { @@ -1132,8 +1118,8 @@ void BOPAlgo_Tools::IntersectVertices(const BOPCol_IndexedDataMapOfShapeReal& th //purpose : //======================================================================= void BOPAlgo_Tools::TreatCompound(const TopoDS_Shape& theS, - BOPCol_MapOfShape& aMFence, - BOPCol_ListOfShape& theLS) + TopTools_MapOfShape& aMFence, + TopTools_ListOfShape& theLS) { TopAbs_ShapeEnum aType = theS.ShapeType(); if (aType != TopAbs_COMPOUND) @@ -1188,7 +1174,7 @@ private: Bnd_Box myBox; }; // Vector of ShapeBox -typedef BOPCol_NCVector BOPAlgo_VectorOfShapeBox; +typedef NCollection_Vector BOPAlgo_VectorOfShapeBox; //======================================================================= //class : BOPAlgo_FillIn3DParts @@ -1234,21 +1220,21 @@ public: }; //! Sets own INTERNAL faces of the solid - void SetOwnIF(const BOPCol_ListOfShape& theLIF) + void SetOwnIF(const TopTools_ListOfShape& theLIF) { myOwnIF = theLIF; }; //! Returns own INTERNAL faces of the solid - const BOPCol_ListOfShape& OwnIF() const + const TopTools_ListOfShape& OwnIF() const { return myOwnIF; }; //! Sets the Bounding Box tree - void SetBBTree(const BOPCol_BoxBndTree& theBBTree) + void SetBBTree(const BOPTools_BoxBndTree& theBBTree) { - myBBTree = (BOPCol_BoxBndTree*)&theBBTree; + myBBTree = (BOPTools_BoxBndTree*)&theBBTree; }; //! Sets the ShapeBox structure @@ -1273,7 +1259,7 @@ public: virtual void Perform(); //! Returns the faces classified as IN for solid - const BOPCol_ListOfShape& InFaces() const + const TopTools_ListOfShape& InFaces() const { return myInFaces; }; @@ -1282,23 +1268,23 @@ private: //! Prepares Edge-Face connection map of the given shape void MapEdgesAndFaces(const TopoDS_Shape& theF, - BOPCol_IndexedDataMapOfShapeListOfShape& theEFMap, + TopTools_IndexedDataMapOfShapeListOfShape& theEFMap, const Handle(NCollection_BaseAllocator)& theAlloc); //! Makes the connexity block of faces using the connection map void MakeConnexityBlock(const TopoDS_Face& theF, - const BOPCol_IndexedMapOfShape& theMEToAvoid, - const BOPCol_IndexedDataMapOfShapeListOfShape& theEFMap, - BOPCol_MapOfShape& theMFDone, - BOPCol_ListOfShape& theLCB, + const TopTools_IndexedMapOfShape& theMEToAvoid, + const TopTools_IndexedDataMapOfShapeListOfShape& theEFMap, + TopTools_MapOfShape& theMFDone, + TopTools_ListOfShape& theLCB, TopoDS_Face& theFaceToClassify); TopoDS_Solid mySolid; //! Solid Bnd_Box myBoxS; // Bounding box of the solid - BOPCol_ListOfShape myOwnIF; //! Own INTERNAL faces of the solid - BOPCol_ListOfShape myInFaces; //! Faces classified as IN + TopTools_ListOfShape myOwnIF; //! Own INTERNAL faces of the solid + TopTools_ListOfShape myInFaces; //! Faces classified as IN - BOPCol_BoxBndTree* myBBTree; //! UB tree of bounding boxes + BOPTools_BoxBndTree* myBBTree; //! UB tree of bounding boxes BOPAlgo_VectorOfShapeBox* myVShapeBox; //! ShapeBoxMap TopoDS_Iterator myItF; //! Iterators @@ -1318,13 +1304,13 @@ void BOPAlgo_FillIn3DParts::Perform() myInFaces.Clear(); // 1. Select boxes of faces that are not out of aBoxS - BOPCol_BoxBndTreeSelector aSelector; + BOPTools_BoxBndTreeSelector aSelector; aSelector.SetBox(myBoxS); // if (!myBBTree->Select(aSelector)) return; - const BOPCol_ListOfInteger& aLIFP = aSelector.Indices(); + const TColStd_ListOfInteger& aLIFP = aSelector.Indices(); // 2. Fill maps of edges and faces of the solid @@ -1332,34 +1318,34 @@ void BOPAlgo_FillIn3DParts::Perform() BOPAlgo_VectorOfShapeBox& aVShapeBox = *myVShapeBox; - BOPCol_IndexedMapOfShape aMSE(1, anAlloc), aMSF(1, anAlloc); - BOPTools::MapShapes(mySolid, TopAbs_EDGE, aMSE); - BOPTools::MapShapes(mySolid, TopAbs_FACE, aMSF); + TopTools_IndexedMapOfShape aMSE(1, anAlloc), aMSF(1, anAlloc); + TopExp::MapShapes(mySolid, TopAbs_EDGE, aMSE); + TopExp::MapShapes(mySolid, TopAbs_FACE, aMSF); // Check if the Solid contains any faces Standard_Boolean bIsEmpty = aMSF.IsEmpty(); // Add own internal faces of the solid into aMSF - BOPCol_ListIteratorOfListOfShape aItLS(myOwnIF); + TopTools_ListIteratorOfListOfShape aItLS(myOwnIF); for (; aItLS.More(); aItLS.Next()) aMSF.Add(aItLS.Value()); // 3. aIVec - faces to process. // Filter the selected faces with faces of the solid. - BOPCol_NCVector aIVec(256, anAlloc); + NCollection_Vector aIVec(256, anAlloc); - BOPCol_ListIteratorOfListOfInteger aItLI(aLIFP); + TColStd_ListIteratorOfListOfInteger aItLI(aLIFP); for (; aItLI.More(); aItLI.Next()) { Standard_Integer nFP = aItLI.Value(); const TopoDS_Shape& aFP = aVShapeBox(nFP).Shape(); if (!aMSF.Contains(aFP)) - aIVec.Append1() = nFP; + aIVec.Appended() = nFP; } // 4. Classify faces relatively solid. // Store faces that are IN mySolid into - Standard_Integer k, aNbFP = aIVec.Extent(); + Standard_Integer k, aNbFP = aIVec.Length(); // Sort indices if necessary if (aNbFP > 1) std::sort(aIVec.begin(), aIVec.end()); @@ -1377,7 +1363,7 @@ void BOPAlgo_FillIn3DParts::Perform() } // Prepare EF map of faces to process for building connexity blocks - BOPCol_IndexedDataMapOfShapeListOfShape aMEFP(1, anAlloc); + TopTools_IndexedDataMapOfShapeListOfShape aMEFP(1, anAlloc); if (aNbFP > 1) { for (k = 0; k < aNbFP; ++k) @@ -1386,10 +1372,10 @@ void BOPAlgo_FillIn3DParts::Perform() // Map of Edge-Face connection, necessary for solid classification. // It will be filled when first classification is performed. - BOPCol_IndexedDataMapOfShapeListOfShape aMEFDS(1, anAlloc); + TopTools_IndexedDataMapOfShapeListOfShape aMEFDS(1, anAlloc); // Fence map to avoid processing of the same faces twice - BOPCol_MapOfShape aMFDone(1, anAlloc); + TopTools_MapOfShape aMFDone(1, anAlloc); for (k = 0; k < aNbFP; ++k) { @@ -1401,7 +1387,7 @@ void BOPAlgo_FillIn3DParts::Perform() // Make connexity blocks of faces, avoiding passing through the // borders of the solid. It helps to reduce significantly the // number of classified faces. - BOPCol_ListOfShape aLCBF(anAlloc); + TopTools_ListOfShape aLCBF(anAlloc); // The most appropriate face for classification TopoDS_Face aFaceToClassify; MakeConnexityBlock(aFP, aMSE, aMEFP, aMFDone, aLCBF, aFaceToClassify); @@ -1435,7 +1421,7 @@ void BOPAlgo_FillIn3DParts::Perform() if (aMEFDS.IsEmpty()) // Fill EF map for Solid - BOPTools::MapShapesAndAncestors(mySolid, TopAbs_EDGE, TopAbs_FACE, aMEFDS); + TopExp::MapShapesAndAncestors(mySolid, TopAbs_EDGE, TopAbs_FACE, aMEFDS); // All vertices are interfere with the solids box, run classification. Standard_Boolean bIsIN = BOPTools_AlgoTools::IsInternalFace @@ -1453,7 +1439,7 @@ void BOPAlgo_FillIn3DParts::Perform() // purpose: //======================================================================= void BOPAlgo_FillIn3DParts::MapEdgesAndFaces(const TopoDS_Shape& theF, - BOPCol_IndexedDataMapOfShapeListOfShape& theEFMap, + TopTools_IndexedDataMapOfShapeListOfShape& theEFMap, const Handle(NCollection_BaseAllocator)& theAllocator) { myItF.Initialize(theF); @@ -1468,9 +1454,9 @@ void BOPAlgo_FillIn3DParts::MapEdgesAndFaces(const TopoDS_Shape& theF, { const TopoDS_Shape& aE = myItW.Value(); - BOPCol_ListOfShape* pLF = theEFMap.ChangeSeek(aE); + TopTools_ListOfShape* pLF = theEFMap.ChangeSeek(aE); if (!pLF) - pLF = &theEFMap(theEFMap.Add(aE, BOPCol_ListOfShape(theAllocator))); + pLF = &theEFMap(theEFMap.Add(aE, TopTools_ListOfShape(theAllocator))); pLF->Append(theF); } } @@ -1480,10 +1466,10 @@ void BOPAlgo_FillIn3DParts::MapEdgesAndFaces(const TopoDS_Shape& theF, // purpose: //======================================================================= void BOPAlgo_FillIn3DParts::MakeConnexityBlock(const TopoDS_Face& theFStart, - const BOPCol_IndexedMapOfShape& theMEAvoid, - const BOPCol_IndexedDataMapOfShapeListOfShape& theEFMap, - BOPCol_MapOfShape& theMFDone, - BOPCol_ListOfShape& theLCB, + const TopTools_IndexedMapOfShape& theMEAvoid, + const TopTools_IndexedDataMapOfShapeListOfShape& theEFMap, + TopTools_MapOfShape& theMFDone, + TopTools_ListOfShape& theLCB, TopoDS_Face& theFaceToClassify) { // Add start element @@ -1491,7 +1477,7 @@ void BOPAlgo_FillIn3DParts::MakeConnexityBlock(const TopoDS_Face& theFStart, if (theEFMap.IsEmpty()) return; - BOPCol_ListIteratorOfListOfShape aItCB(theLCB); + TopTools_ListIteratorOfListOfShape aItCB(theLCB); for (; aItCB.More(); aItCB.Next()) { const TopoDS_Shape& aF = aItCB.Value(); @@ -1513,10 +1499,10 @@ void BOPAlgo_FillIn3DParts::MakeConnexityBlock(const TopoDS_Face& theFStart, continue; } - const BOPCol_ListOfShape* pLF = theEFMap.Seek(aE); + const TopTools_ListOfShape* pLF = theEFMap.Seek(aE); if (!pLF) continue; - BOPCol_ListIteratorOfListOfShape aItLF(*pLF); + TopTools_ListIteratorOfListOfShape aItLF(*pLF); for (; aItLF.More(); aItLF.Next()) { const TopoDS_Shape& aFToAdd = aItLF.Value(); @@ -1529,41 +1515,41 @@ void BOPAlgo_FillIn3DParts::MakeConnexityBlock(const TopoDS_Face& theFStart, } // Vector of solid classifiers -typedef BOPCol_NCVector BOPAlgo_VectorOfFillIn3DParts; +typedef NCollection_Vector BOPAlgo_VectorOfFillIn3DParts; // Functors to perform classification -typedef BOPCol_ContextFunctor BOPCol_FillIn3DPartsFunctor; +typedef BOPTools_ContextFunctor BOPAlgo_FillIn3DPartsFunctor; -typedef BOPCol_ContextCnt BOPAlgo_FillIn3DPartsCnt; +typedef BOPTools_ContextCnt BOPAlgo_FillIn3DPartsCnt; //======================================================================= //function : ClassifyFaces //purpose : //======================================================================= -void BOPAlgo_Tools::ClassifyFaces(const BOPCol_ListOfShape& theFaces, - const BOPCol_ListOfShape& theSolids, +void BOPAlgo_Tools::ClassifyFaces(const TopTools_ListOfShape& theFaces, + const TopTools_ListOfShape& theSolids, const Standard_Boolean theRunParallel, Handle(IntTools_Context)& theContext, - BOPCol_IndexedDataMapOfShapeListOfShape& theInParts, - const BOPCol_DataMapOfShapeBox& theShapeBoxMap, - const BOPCol_DataMapOfShapeListOfShape& theSolidsIF) + TopTools_IndexedDataMapOfShapeListOfShape& theInParts, + const TopTools_DataMapOfShapeBox& theShapeBoxMap, + const TopTools_DataMapOfShapeListOfShape& theSolidsIF) { Handle(NCollection_BaseAllocator) anAlloc = new NCollection_IncAllocator; // Fill the vector of shape box with faces and its bounding boxes BOPAlgo_VectorOfShapeBox aVSB(256, anAlloc); - BOPCol_ListIteratorOfListOfShape aItLF(theFaces); + TopTools_ListIteratorOfListOfShape aItLF(theFaces); for (; aItLF.More(); aItLF.Next()) { const TopoDS_Shape& aF = aItLF.Value(); // Append face to the vector of shape box - BOPAlgo_ShapeBox& aSB = aVSB.Append1(); + BOPAlgo_ShapeBox& aSB = aVSB.Appended(); aSB.SetShape(aF); // Get bounding box for the face @@ -1581,10 +1567,10 @@ void BOPAlgo_Tools::ClassifyFaces(const BOPCol_ListOfShape& theFaces, // Prepare UB tree of bounding boxes of the faces to classify // taking the bounding boxes from the just prepared vector - BOPCol_BoxBndTree aBBTree; + BOPTools_BoxBndTree aBBTree; NCollection_UBTreeFiller aTreeFiller(aBBTree); - Standard_Integer aNbF = aVSB.Extent(); + Standard_Integer aNbF = aVSB.Length(); for (Standard_Integer i = 0; i < aNbF; ++i) { aTreeFiller.Add(i, aVSB(i).Box()); @@ -1596,12 +1582,12 @@ void BOPAlgo_Tools::ClassifyFaces(const BOPCol_ListOfShape& theFaces, // Prepare vector of solids to classify BOPAlgo_VectorOfFillIn3DParts aVFIP; - BOPCol_ListIteratorOfListOfShape aItLS(theSolids); + TopTools_ListIteratorOfListOfShape aItLS(theSolids); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Solid& aSolid = TopoDS::Solid(aItLS.Value()); // Append solid to the vector - BOPAlgo_FillIn3DParts& aFIP = aVFIP.Append1(); + BOPAlgo_FillIn3DParts& aFIP = aVFIP.Appended(); aFIP.SetSolid(aSolid); // Get bounding box for the solid @@ -1621,7 +1607,7 @@ void BOPAlgo_Tools::ClassifyFaces(const BOPCol_ListOfShape& theFaces, aFIP.SetBoxS(aBox); } - const BOPCol_ListOfShape* pLIF = theSolidsIF.Seek(aSolid); + const TopTools_ListOfShape* pLIF = theSolidsIF.Seek(aSolid); if (pLIF) aFIP.SetOwnIF(*pLIF); @@ -1636,12 +1622,12 @@ void BOPAlgo_Tools::ClassifyFaces(const BOPCol_ListOfShape& theFaces, // Analyze the results and fill the resulting map - Standard_Integer aNbS = aVFIP.Extent(); + Standard_Integer aNbS = aVFIP.Length(); for (Standard_Integer i = 0; i < aNbS; ++i) { BOPAlgo_FillIn3DParts& aFIP = aVFIP(i); const TopoDS_Shape& aS = aFIP.Solid(); - const BOPCol_ListOfShape& aLFIn = aFIP.InFaces(); + const TopTools_ListOfShape& aLFIn = aFIP.InFaces(); theInParts.Add(aS, aLFIn); } } diff --git a/src/BOPAlgo/BOPAlgo_Tools.hxx b/src/BOPAlgo/BOPAlgo_Tools.hxx index b310ab62f3..daf39956f8 100644 --- a/src/BOPAlgo/BOPAlgo_Tools.hxx +++ b/src/BOPAlgo/BOPAlgo_Tools.hxx @@ -19,19 +19,17 @@ #include #include -#include -#include -#include -#include -#include -#include -#include -#include - #include #include #include - +#include +#include +#include +#include +#include +#include +#include +#include #include class BOPDS_PaveBlock; @@ -39,6 +37,7 @@ class BOPDS_CommonBlock; class IntTools_Context; class TopoDS_Shape; +//! Provides tools used in the intersection part of Boolean operations class BOPAlgo_Tools { public: @@ -47,7 +46,7 @@ public: template static void MakeBlocks(const NCollection_IndexedDataMap, theTypeHasher>& theMILI, NCollection_List>& theMBlocks, - const BOPCol_BaseAllocator& theAllocator) + const Handle(NCollection_BaseAllocator)& theAllocator) { NCollection_Map aMFence; Standard_Integer i, aNb = theMILI.Extent(); @@ -81,7 +80,7 @@ public: static void FillMap(const theType& n1, const theType& n2, NCollection_IndexedDataMap, theTypeHasher>& theMILI, - const BOPCol_BaseAllocator& theAllocator) + const Handle(NCollection_BaseAllocator)& theAllocator) { NCollection_List *pList1 = theMILI.ChangeSeek(n1); if (!pList1) { @@ -99,14 +98,14 @@ public: Standard_EXPORT static void FillMap(const Handle(BOPDS_PaveBlock)& thePB1, const Standard_Integer theF, BOPDS_IndexedDataMapOfPaveBlockListOfInteger& theMILI, - const BOPCol_BaseAllocator& theAllocator); + const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT static void PerformCommonBlocks(BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock& theMBlocks, - const BOPCol_BaseAllocator& theAllocator, + const Handle(NCollection_BaseAllocator)& theAllocator, BOPDS_PDS& theDS); Standard_EXPORT static void PerformCommonBlocks(const BOPDS_IndexedDataMapOfPaveBlockListOfInteger& theMBlocks, - const BOPCol_BaseAllocator& theAllocator, + const Handle(NCollection_BaseAllocator)& theAllocator, BOPDS_PDS& pDS); Standard_EXPORT static Standard_Real ComputeToleranceOfCB @@ -157,17 +156,17 @@ public: const Standard_Real theAngTol = 1.e-8); //! Finds chains of intersecting vertices - Standard_EXPORT static void IntersectVertices(const BOPCol_IndexedDataMapOfShapeReal& theVertices, + Standard_EXPORT static void IntersectVertices(const TopTools_IndexedDataMapOfShapeReal& theVertices, const Standard_Boolean theRunParallel, const Standard_Real theFuzzyValue, - BOPCol_ListOfListOfShape& theChains); + TopTools_ListOfListOfShape& theChains); //! Collect in the output list recursively all non-compound subshapes of the first level //! of the given shape theS. If a shape presents in the map theMFence it is skipped. //! All shapes put in the output are also added into theMFence. Standard_EXPORT static void TreatCompound(const TopoDS_Shape& theS, - BOPCol_MapOfShape& theMFence, - BOPCol_ListOfShape& theLS); + TopTools_MapOfShape& theMFence, + TopTools_ListOfShape& theLS); //! Classifies the faces relatively solids . //! The IN faces for solids are stored into output data map . @@ -182,13 +181,13 @@ public: //! It is assumed that all faces and solids are already intersected and //! do not have any geometrically coinciding parts without topological //! sharing of these parts - Standard_EXPORT static void ClassifyFaces(const BOPCol_ListOfShape& theFaces, - const BOPCol_ListOfShape& theSolids, + Standard_EXPORT static void ClassifyFaces(const TopTools_ListOfShape& theFaces, + const TopTools_ListOfShape& theSolids, const Standard_Boolean theRunParallel, Handle(IntTools_Context)& theContext, - BOPCol_IndexedDataMapOfShapeListOfShape& theInParts, - const BOPCol_DataMapOfShapeBox& theShapeBoxMap = BOPCol_DataMapOfShapeBox(), - const BOPCol_DataMapOfShapeListOfShape& theSolidsIF = BOPCol_DataMapOfShapeListOfShape()); + TopTools_IndexedDataMapOfShapeListOfShape& theInParts, + const TopTools_DataMapOfShapeBox& theShapeBoxMap = TopTools_DataMapOfShapeBox(), + const TopTools_DataMapOfShapeListOfShape& theSolidsIF = TopTools_DataMapOfShapeListOfShape()); }; diff --git a/src/BOPAlgo/BOPAlgo_ToolsProvider.cxx b/src/BOPAlgo/BOPAlgo_ToolsProvider.cxx index 9f01710c0c..cd2884f169 100644 --- a/src/BOPAlgo/BOPAlgo_ToolsProvider.cxx +++ b/src/BOPAlgo/BOPAlgo_ToolsProvider.cxx @@ -67,10 +67,10 @@ void BOPAlgo_ToolsProvider::AddTool(const TopoDS_Shape& theShape) //function : SetTools //purpose : //======================================================================= -void BOPAlgo_ToolsProvider::SetTools(const BOPCol_ListOfShape& theShapes) +void BOPAlgo_ToolsProvider::SetTools(const TopTools_ListOfShape& theShapes) { myTools.Clear(); - BOPCol_ListIteratorOfListOfShape aIt(theShapes); + TopTools_ListIteratorOfListOfShape aIt(theShapes); for (; aIt.More(); aIt.Next()) AddTool(aIt.Value()); } diff --git a/src/BOPAlgo/BOPAlgo_ToolsProvider.hxx b/src/BOPAlgo/BOPAlgo_ToolsProvider.hxx index 0c6642fad7..98d1ce89d8 100644 --- a/src/BOPAlgo/BOPAlgo_ToolsProvider.hxx +++ b/src/BOPAlgo/BOPAlgo_ToolsProvider.hxx @@ -31,7 +31,7 @@ public: //! Empty constructor Standard_EXPORT BOPAlgo_ToolsProvider(); - Standard_EXPORT BOPAlgo_ToolsProvider(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_ToolsProvider(const Handle(NCollection_BaseAllocator)& theAllocator); //! Clears internal fields and arguments Standard_EXPORT virtual void Clear() Standard_OVERRIDE; @@ -40,18 +40,18 @@ public: Standard_EXPORT virtual void AddTool(const TopoDS_Shape& theShape); //! Adds the Tool arguments of the operation - Standard_EXPORT virtual void SetTools(const BOPCol_ListOfShape& theShapes); + Standard_EXPORT virtual void SetTools(const TopTools_ListOfShape& theShapes); //! Returns the Tool arguments of the operation - const BOPCol_ListOfShape& Tools() const + const TopTools_ListOfShape& Tools() const { return myTools; } protected: - BOPCol_ListOfShape myTools; - BOPCol_MapOfShape myMapTools; + TopTools_ListOfShape myTools; + TopTools_MapOfShape myMapTools; }; #endif // _BOPAlgo_ToolsProvider_HeaderFile diff --git a/src/BOPAlgo/BOPAlgo_WireEdgeSet.hxx b/src/BOPAlgo/BOPAlgo_WireEdgeSet.hxx index 3c27d90db6..625f937d25 100644 --- a/src/BOPAlgo/BOPAlgo_WireEdgeSet.hxx +++ b/src/BOPAlgo/BOPAlgo_WireEdgeSet.hxx @@ -22,9 +22,9 @@ #include #include +#include #include -#include -#include +#include class TopoDS_Face; class TopoDS_Shape; @@ -40,7 +40,7 @@ public: BOPAlgo_WireEdgeSet(); virtual ~BOPAlgo_WireEdgeSet(); - BOPAlgo_WireEdgeSet(const BOPCol_BaseAllocator& theAllocator); + BOPAlgo_WireEdgeSet(const Handle(NCollection_BaseAllocator)& theAllocator); void Clear(); @@ -50,11 +50,11 @@ public: void AddStartElement (const TopoDS_Shape& sS); - const BOPCol_ListOfShape& StartElements() const; + const TopTools_ListOfShape& StartElements() const; void AddShape (const TopoDS_Shape& sS); - const BOPCol_ListOfShape& Shapes() const; + const TopTools_ListOfShape& Shapes() const; @@ -64,8 +64,8 @@ protected: TopoDS_Face myFace; - BOPCol_ListOfShape myStartShapes; - BOPCol_ListOfShape myShapes; + TopTools_ListOfShape myStartShapes; + TopTools_ListOfShape myShapes; private: diff --git a/src/BOPAlgo/BOPAlgo_WireEdgeSet.lxx b/src/BOPAlgo/BOPAlgo_WireEdgeSet.lxx index 2f9dd98bf1..e4fe43dce8 100644 --- a/src/BOPAlgo/BOPAlgo_WireEdgeSet.lxx +++ b/src/BOPAlgo/BOPAlgo_WireEdgeSet.lxx @@ -76,7 +76,7 @@ //function : StartElements //purpose : //======================================================================= - inline const BOPCol_ListOfShape& BOPAlgo_WireEdgeSet::StartElements()const + inline const TopTools_ListOfShape& BOPAlgo_WireEdgeSet::StartElements()const { return myStartShapes; } @@ -92,7 +92,7 @@ //function : Shapes //purpose : //======================================================================= - inline const BOPCol_ListOfShape& BOPAlgo_WireEdgeSet::Shapes()const + inline const TopTools_ListOfShape& BOPAlgo_WireEdgeSet::Shapes()const { return myShapes; } diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter.cxx b/src/BOPAlgo/BOPAlgo_WireSplitter.cxx index 4dffb3f617..97d586cebb 100644 --- a/src/BOPAlgo/BOPAlgo_WireSplitter.cxx +++ b/src/BOPAlgo/BOPAlgo_WireSplitter.cxx @@ -17,22 +17,21 @@ #include #include #include -#include -#include -#include -#include -#include -#include -#include #include +#include #include #include +#include #include #include #include #include #include #include +#include +#include +#include +#include //======================================================================= //function : @@ -171,16 +170,16 @@ protected: Handle(IntTools_Context) myContext; }; -typedef BOPCol_NCVector \ +typedef NCollection_Vector \ BOPAlgo_VectorOfConnexityBlock; // -typedef BOPCol_ContextFunctor +typedef BOPTools_ContextFunctor BOPAlgo_SplitBlockFunctor; // -typedef BOPCol_ContextCnt +typedef BOPTools_ContextCnt BOPAlgo_SplitBlockCnt; @@ -195,7 +194,7 @@ void BOPAlgo_WireSplitter::MakeWires() Standard_Integer aNbVCB, k; TopoDS_Wire aW; BOPTools_ListIteratorOfListOfConnexityBlock aItCB; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; BOPAlgo_VectorOfConnexityBlock aVCB; // const TopoDS_Face& aF=myWES->Face(); @@ -205,12 +204,12 @@ void BOPAlgo_WireSplitter::MakeWires() BOPTools_ConnexityBlock& aCB=aItCB.ChangeValue(); bIsRegular=aCB.IsRegular(); if (bIsRegular) { - BOPCol_ListOfShape& aLE=aCB.ChangeShapes(); + TopTools_ListOfShape& aLE=aCB.ChangeShapes(); BOPAlgo_WireSplitter::MakeWire(aLE, aW); myWES->AddShape(aW); } else { - BOPAlgo_WS_ConnexityBlock& aWSCB = aVCB.Append1(); + BOPAlgo_WS_ConnexityBlock& aWSCB = aVCB.Appended(); aWSCB.SetFace(aF); aWSCB.SetConnexityBlock(aCB); } @@ -218,10 +217,10 @@ void BOPAlgo_WireSplitter::MakeWires() //=================================================== BOPAlgo_SplitBlockCnt::Perform(myRunParallel, aVCB, myContext); //=================================================== - aNbVCB=aVCB.Extent(); + aNbVCB=aVCB.Length(); for (k=0; k #include #include -#include -#include #include #include +#include +#include class BOPAlgo_WireEdgeSet; class TopoDS_Wire; class TopoDS_Face; @@ -46,7 +46,7 @@ public: Standard_EXPORT BOPAlgo_WireSplitter(); Standard_EXPORT virtual ~BOPAlgo_WireSplitter(); - Standard_EXPORT BOPAlgo_WireSplitter(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPAlgo_WireSplitter(const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT void SetWES (const BOPAlgo_WireEdgeSet& theWES); @@ -60,7 +60,7 @@ public: Standard_EXPORT virtual void Perform() Standard_OVERRIDE; - static void MakeWire(BOPCol_ListOfShape& theLE, TopoDS_Wire& theW); + static void MakeWire(TopTools_ListOfShape& theLE, TopoDS_Wire& theW); Standard_EXPORT static void SplitBlock (const TopoDS_Face& theF, BOPTools_ConnexityBlock& theCB, diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter.lxx b/src/BOPAlgo/BOPAlgo_WireSplitter.lxx index d3481e7619..9f44253994 100644 --- a/src/BOPAlgo/BOPAlgo_WireSplitter.lxx +++ b/src/BOPAlgo/BOPAlgo_WireSplitter.lxx @@ -85,13 +85,13 @@ typedef NCollection_IndexedDataMap #include -#include -#include -#include -#include -#include -#include -#include #include #include #include @@ -50,9 +43,16 @@ #include #include #include +#include +#include +#include +#include +#include +#include + typedef NCollection_DataMap \ \ - BOPCol_DataMapOfShapeBoolean; + MyDataMapOfShapeBoolean; // static @@ -97,12 +97,12 @@ static const TopoDS_Vertex& aVa, const TopoDS_Edge& aEOuta, BOPAlgo_EdgeInfo& anEdgeInfo, - BOPCol_SequenceOfShape& aLS, - BOPCol_SequenceOfShape& aVertVa, - BOPCol_SequenceOfPnt2d& aCoordVa, + TopTools_SequenceOfShape& aLS, + TopTools_SequenceOfShape& aVertVa, + TColgp_SequenceOfPnt2d& aCoordVa, BOPTools_ConnexityBlock& aCB, BOPAlgo_IndexedDataMapOfShapeListOfEdgeInfo& mySmartMap, - BOPCol_DataMapOfShapeBoolean aVertMap); + MyDataMapOfShapeBoolean aVertMap); static Standard_Real Angle (const gp_Dir2d& aDir2D); @@ -122,7 +122,7 @@ static static void RefineAngles(const TopoDS_Face& myFace, - const BOPCol_ListOfShape&, + const TopTools_ListOfShape&, BOPAlgo_IndexedDataMapOfShapeListOfEdgeInfo&, const Handle(IntTools_Context)&); @@ -130,7 +130,7 @@ static static void RefineAngles(const TopoDS_Vertex& , const TopoDS_Face& , - const BOPCol_MapOfShape& , + const TopTools_MapOfShape& , BOPAlgo_ListOfEdgeInfo&, const Handle(IntTools_Context)&); @@ -159,13 +159,13 @@ void BOPAlgo_WireSplitter::SplitBlock(const TopoDS_Face& myFace, TopoDS_Iterator aItS; TopoDS_Vertex aVV; TopoDS_Shape aV1; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; BOPAlgo_ListIteratorOfListOfEdgeInfo aItLEI; // BOPAlgo_IndexedDataMapOfShapeListOfEdgeInfo mySmartMap(100); - BOPCol_DataMapOfShapeBoolean aVertMap; + MyDataMapOfShapeBoolean aVertMap; // - const BOPCol_ListOfShape& myEdges=aCB.Shapes(); + const TopTools_ListOfShape& myEdges=aCB.Shapes(); // // 1.Filling mySmartMap aIt.Initialize(myEdges); @@ -242,19 +242,19 @@ void BOPAlgo_WireSplitter::SplitBlock(const TopoDS_Face& myFace, Standard_Integer aNbE, aNbMapEE; Standard_Boolean bFlag; // - BOPCol_IndexedDataMapOfShapeListOfShape aMapEE(100); + TopTools_IndexedDataMapOfShapeListOfShape aMapEE(100); aNbE=myEdges.Extent(); // aIt.Initialize(myEdges); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aE = aIt.Value(); if (!aMapEE.Contains(aE)) { - BOPCol_ListOfShape aLEx; + TopTools_ListOfShape aLEx; aLEx.Append(aE); aMapEE.Add(aE, aLEx); } else { - BOPCol_ListOfShape& aLEx=aMapEE.ChangeFromKey(aE); + TopTools_ListOfShape& aLEx=aMapEE.ChangeFromKey(aE); aLEx.Append(aE); } } @@ -262,7 +262,7 @@ void BOPAlgo_WireSplitter::SplitBlock(const TopoDS_Face& myFace, bFlag=Standard_True; aNbMapEE=aMapEE.Extent(); for (i=1; i<=aNbMapEE; ++i) { - const BOPCol_ListOfShape& aLEx=aMapEE(i); + const TopTools_ListOfShape& aLEx=aMapEE(i); aNbE=aLEx.Extent(); if (aNbE==1) {// usual case continue; @@ -285,9 +285,9 @@ void BOPAlgo_WireSplitter::SplitBlock(const TopoDS_Face& myFace, if (bNothingToDo) { TopoDS_Wire aW; // - BOPCol_ListOfShape& aLECB=aCB.ChangeShapes(); + TopTools_ListOfShape& aLECB=aCB.ChangeShapes(); BOPAlgo_WireSplitter::MakeWire(aLECB, aW); - BOPCol_ListOfShape& aLoops=aCB.ChangeLoops(); + TopTools_ListOfShape& aLoops=aCB.ChangeLoops(); aLoops.Append(aW); // return; @@ -322,8 +322,8 @@ void BOPAlgo_WireSplitter::SplitBlock(const TopoDS_Face& myFace, // 4. Do // Standard_Boolean bIsOut, bIsNotPassed; - BOPCol_SequenceOfShape aLS, aVertVa; - BOPCol_SequenceOfPnt2d aCoordVa; + TopTools_SequenceOfShape aLS, aVertVa; + TColgp_SequenceOfPnt2d aCoordVa; // for (i=1; i<=aNb; ++i) { const TopoDS_Vertex& aVa=(*(TopoDS_Vertex *)(&mySmartMap.FindKey(i))); @@ -356,13 +356,12 @@ void Path (const GeomAdaptor_Surface& aGAS, const TopoDS_Vertex& aVFirst, const TopoDS_Edge& aEFirst, BOPAlgo_EdgeInfo& aEIFirst, - BOPCol_SequenceOfShape& aLS, - BOPCol_SequenceOfShape& aVertVa, - BOPCol_SequenceOfPnt2d& aCoordVa, + TopTools_SequenceOfShape& aLS, + TopTools_SequenceOfShape& aVertVa, + TColgp_SequenceOfPnt2d& aCoordVa, BOPTools_ConnexityBlock& aCB, BOPAlgo_IndexedDataMapOfShapeListOfEdgeInfo& mySmartMap, - BOPCol_DataMapOfShapeBoolean aVertMap) - + MyDataMapOfShapeBoolean aVertMap) { Standard_Integer i, j, aNb, aNbj; Standard_Real anAngleIn, anAngleOut, anAngle, aMinAngle; @@ -412,7 +411,7 @@ void Path (const GeomAdaptor_Surface& aGAS, // bIsClosed = aVertMap.Find(aVb); { - BOPCol_ListOfShape aBuf; + TopTools_ListOfShape aBuf; Standard_Boolean bHasEdge = Standard_False; // aNb = aLS.Length(); @@ -473,8 +472,8 @@ void Path (const GeomAdaptor_Surface& aGAS, return; } // - BOPCol_SequenceOfShape aLSt, aVertVat; - BOPCol_SequenceOfPnt2d aCoordVat; + TopTools_SequenceOfShape aLSt, aVertVat; + TColgp_SequenceOfPnt2d aCoordVat; // aVb=(*(TopoDS_Vertex *)(&aVertVa(i))); // @@ -861,14 +860,16 @@ Standard_Real VTolerance2D (const TopoDS_Vertex& aV, //purpose : //======================================================================= void RefineAngles(const TopoDS_Face& myFace, - const BOPCol_ListOfShape& myEdges, + const TopTools_ListOfShape& myEdges, BOPAlgo_IndexedDataMapOfShapeListOfEdgeInfo& mySmartMap, const Handle(IntTools_Context)& theContext) { Standard_Integer aNb, i; - BOPCol_IndexedDataMapOfShapeInteger aMSI; - BOPCol_MapOfShape aMBE; - BOPCol_ListIteratorOfListOfShape aIt; + NCollection_IndexedDataMap aMSI; + TopTools_MapOfShape aMBE; + TopTools_ListIteratorOfListOfShape aIt; // // 1. Boundary Edges aIt.Initialize(myEdges); @@ -906,9 +907,9 @@ void RefineAngles(const TopoDS_Face& myFace, //======================================================================= typedef NCollection_DataMap \ \ - BOPCol_DataMapOfShapeReal; -typedef BOPCol_DataMapOfShapeReal::Iterator \ - BOPCol_DataMapIteratorOfDataMapOfShapeReal; + TopTools_DataMapOfShapeReal; +typedef TopTools_DataMapOfShapeReal::Iterator \ + TopTools_DataMapIteratorOfDataMapOfShapeReal; // //======================================================================= //function : RefineAngles @@ -916,14 +917,14 @@ typedef BOPCol_DataMapOfShapeReal::Iterator \ //======================================================================= void RefineAngles(const TopoDS_Vertex& aV, const TopoDS_Face& myFace, - const BOPCol_MapOfShape& aMBE, + const TopTools_MapOfShape& aMBE, BOPAlgo_ListOfEdgeInfo& aLEI, const Handle(IntTools_Context)& theContext) { Standard_Boolean bIsIn, bIsBoundary, bRefined; Standard_Integer iCntBnd, iCntInt; Standard_Real aA, aA1, aA2; - BOPCol_DataMapOfShapeReal aDMSR; + TopTools_DataMapOfShapeReal aDMSR; BOPAlgo_ListIteratorOfListOfEdgeInfo aItLEI; // aA1=0.; // angle of outgoing edge diff --git a/src/BOPCol/BOPCol_BaseAllocator.hxx b/src/BOPCol/BOPCol_BaseAllocator.hxx deleted file mode 100644 index 6c4e0e6673..0000000000 --- a/src/BOPCol/BOPCol_BaseAllocator.hxx +++ /dev/null @@ -1,22 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_BaseAllocator_HeaderFile -#define BOPCol_BaseAllocator_HeaderFile - -#include - -typedef Handle(NCollection_BaseAllocator) BOPCol_BaseAllocator; - -#endif diff --git a/src/BOPCol/BOPCol_Box2DBndTree.cxx b/src/BOPCol/BOPCol_Box2DBndTree.cxx deleted file mode 100644 index ead66445e5..0000000000 --- a/src/BOPCol/BOPCol_Box2DBndTree.cxx +++ /dev/null @@ -1,81 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2012 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// -// 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 - -//======================================================================= -//function : -//purpose : -//======================================================================= -BOPCol_Box2DBndTreeSelector::BOPCol_Box2DBndTreeSelector() -{ -} -//======================================================================= -//function : ~ -//purpose : -//======================================================================= -BOPCol_Box2DBndTreeSelector::~BOPCol_Box2DBndTreeSelector() -{ -} -//======================================================================= -//function : Reject -//purpose : -//======================================================================= -Standard_Boolean BOPCol_Box2DBndTreeSelector::Reject - (const Bnd_Box2d& aBox2D) const -{ - return myBox2D.IsOut(aBox2D); -} -//======================================================================= -//function : Accept -//purpose : -//======================================================================= -Standard_Boolean BOPCol_Box2DBndTreeSelector::Accept - (const Standard_Integer& aIndex) -{ - Standard_Boolean bRet=Standard_False; - // - myIndices.Append(aIndex); - bRet=!bRet; - //} - return bRet; -} -//======================================================================= -//function : SetBox -//purpose : -//======================================================================= -void BOPCol_Box2DBndTreeSelector::SetBox(const Bnd_Box2d& aBox2D) -{ - myBox2D=aBox2D; -} -//======================================================================= -//function : Clear -//purpose : -//======================================================================= -void BOPCol_Box2DBndTreeSelector::Clear() -{ - myIndices.Clear(); -} -//======================================================================= -//function : Indices -//purpose : -//======================================================================= -const BOPCol_ListOfInteger& BOPCol_Box2DBndTreeSelector::Indices() const -{ - return myIndices; -} diff --git a/src/BOPCol/BOPCol_Box2DBndTree.hxx b/src/BOPCol/BOPCol_Box2DBndTree.hxx deleted file mode 100644 index 61dc176ba1..0000000000 --- a/src/BOPCol/BOPCol_Box2DBndTree.hxx +++ /dev/null @@ -1,48 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2012 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// -// 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. - -#ifndef BOPCol_Box2DBndTree_HeaderFile -#define BOPCol_Box2DBndTree_HeaderFile - -#include -#include -#include -/** - * The instantiation of the algorithm of unbalanced binary tree - * of overlapped bounding boxes 2D. - * -*/ -typedef NCollection_UBTree BOPCol_Box2DBndTree; - - class BOPCol_Box2DBndTreeSelector : public BOPCol_Box2DBndTree::Selector { - public: - Standard_EXPORT BOPCol_Box2DBndTreeSelector(); - Standard_EXPORT virtual Standard_Boolean Reject(const Bnd_Box2d&) const; - Standard_EXPORT virtual Standard_Boolean Accept(const Standard_Integer &); - Standard_EXPORT virtual ~BOPCol_Box2DBndTreeSelector(); - - Standard_EXPORT void Clear(); - Standard_EXPORT void SetBox(const Bnd_Box2d&); - Standard_EXPORT const BOPCol_ListOfInteger& Indices() const; - - protected: - Bnd_Box2d myBox2D; - BOPCol_ListOfInteger myIndices; - }; - -#endif diff --git a/src/BOPCol/BOPCol_BoxBndTree.cxx b/src/BOPCol/BOPCol_BoxBndTree.cxx deleted file mode 100644 index bc01ba7778..0000000000 --- a/src/BOPCol/BOPCol_BoxBndTree.cxx +++ /dev/null @@ -1,77 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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 - -//======================================================================= -//function : -//purpose : -//======================================================================= -BOPCol_BoxBndTreeSelector::BOPCol_BoxBndTreeSelector() -{ -} -//======================================================================= -//function : ~ -//purpose : -//======================================================================= -BOPCol_BoxBndTreeSelector::~BOPCol_BoxBndTreeSelector() -{ -} -//======================================================================= -//function : Reject -//purpose : -//======================================================================= - Standard_Boolean BOPCol_BoxBndTreeSelector::Reject (const Bnd_Box& aBox) const -{ - return myBox.IsOut(aBox); -} -//======================================================================= -//function : Accept -//purpose : -//======================================================================= -Standard_Boolean BOPCol_BoxBndTreeSelector::Accept (const Standard_Integer& aIndex) -{ - Standard_Boolean bRet=Standard_False; - // - myIndices.Append(aIndex); - bRet=!bRet; - return bRet; -} -//======================================================================= -//function : SetBox -//purpose : -//======================================================================= -void BOPCol_BoxBndTreeSelector::SetBox(const Bnd_Box& aBox) -{ - myBox=aBox; -} -//======================================================================= -//function : Clear -//purpose : -//======================================================================= -void BOPCol_BoxBndTreeSelector::Clear() -{ - myIndices.Clear(); -} -//======================================================================= -//function : Indices -//purpose : -//======================================================================= -const BOPCol_ListOfInteger& BOPCol_BoxBndTreeSelector::Indices() const -{ - return myIndices; -} diff --git a/src/BOPCol/BOPCol_BoxBndTree.hxx b/src/BOPCol/BOPCol_BoxBndTree.hxx deleted file mode 100644 index 394bb37c32..0000000000 --- a/src/BOPCol/BOPCol_BoxBndTree.hxx +++ /dev/null @@ -1,48 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. - -#ifndef NMTDS_BoxBndTree_HeaderFile -#define NMTDS_BoxBndTree_HeaderFile - -#include -#include -#include -/** - * The instantiation of the algorithm of unbalanced binary tree - * of overlapped bounding boxes. - * -*/ -typedef NCollection_UBTree BOPCol_BoxBndTree; - - class BOPCol_BoxBndTreeSelector : public BOPCol_BoxBndTree::Selector { - public: - Standard_EXPORT BOPCol_BoxBndTreeSelector(); - Standard_EXPORT virtual Standard_Boolean Reject(const Bnd_Box&) const; - Standard_EXPORT virtual Standard_Boolean Accept(const Standard_Integer &); - Standard_EXPORT virtual ~BOPCol_BoxBndTreeSelector(); - - Standard_EXPORT void Clear(); - Standard_EXPORT void SetBox(const Bnd_Box&); - Standard_EXPORT const BOPCol_ListOfInteger& Indices() const; - - protected: - Bnd_Box myBox; - BOPCol_ListOfInteger myIndices; - - }; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfIntegerInteger.hxx b/src/BOPCol/BOPCol_DataMapOfIntegerInteger.hxx deleted file mode 100644 index 36d299a1b1..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfIntegerInteger.hxx +++ /dev/null @@ -1,25 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfIntegerInteger_HeaderFile -#define BOPCol_DataMapOfIntegerInteger_HeaderFile - -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfIntegerInteger; -typedef BOPCol_DataMapOfIntegerInteger::Iterator BOPCol_DataMapIteratorOfDataMapOfIntegerInteger; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfIntegerListOfInteger.hxx b/src/BOPCol/BOPCol_DataMapOfIntegerListOfInteger.hxx deleted file mode 100644 index 25c55a94d6..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfIntegerListOfInteger.hxx +++ /dev/null @@ -1,27 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfIntegerListOfInteger_HeaderFile -#define BOPCol_DataMapOfIntegerListOfInteger_HeaderFile - - -#include - -#include -#include - -typedef NCollection_DataMap BOPCol_DataMapOfIntegerListOfInteger; -typedef BOPCol_DataMapOfIntegerListOfInteger::Iterator BOPCol_DataMapIteratorOfDataMapOfIntegerListOfInteger; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfIntegerListOfShape.hxx b/src/BOPCol/BOPCol_DataMapOfIntegerListOfShape.hxx deleted file mode 100644 index d5bd72929b..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfIntegerListOfShape.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfIntegerListOfShape_HeaderFile -#define BOPCol_DataMapOfIntegerListOfShape_HeaderFile - -#include - -#include -#include - -typedef NCollection_DataMap BOPCol_DataMapOfIntegerListOfShape; -typedef BOPCol_DataMapOfIntegerListOfShape::Iterator BOPCol_DataMapIteratorOfDataMapOfIntegerListOfShape; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfIntegerMapOfInteger.hxx b/src/BOPCol/BOPCol_DataMapOfIntegerMapOfInteger.hxx deleted file mode 100644 index 6d4a2d5b81..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfIntegerMapOfInteger.hxx +++ /dev/null @@ -1,27 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfIntegerMapOfInteger_HeaderFile -#define BOPCol_DataMapOfIntegerMapOfInteger_HeaderFile - - -#include - -#include -#include - -typedef NCollection_DataMap BOPCol_DataMapOfIntegerMapOfInteger; -typedef BOPCol_DataMapOfIntegerMapOfInteger::Iterator BOPCol_DataMapIteratorOfDataMapOfIntegerMapOfInteger; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfIntegerReal.hxx b/src/BOPCol/BOPCol_DataMapOfIntegerReal.hxx deleted file mode 100644 index bd19d7eca6..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfIntegerReal.hxx +++ /dev/null @@ -1,25 +0,0 @@ -// Created by: Eugeny MALTCHIKOV -// 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. - -#ifndef BOPCol_DataMapOfIntegerReal_HeaderFile -#define BOPCol_DataMapOfIntegerReal_HeaderFile - -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfIntegerReal; -typedef BOPCol_DataMapOfIntegerReal::Iterator BOPCol_DataMapIteratorOfDataMapOfIntegerReal; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfIntegerShape.hxx b/src/BOPCol/BOPCol_DataMapOfIntegerShape.hxx deleted file mode 100644 index f72ec10240..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfIntegerShape.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Eugeny MALTCHIKOV -// 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. - -#ifndef BOPCol_DataMapOfIntegerShape_HeaderFile -#define BOPCol_DataMapOfIntegerShape_HeaderFile - -#include -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfIntegerShape; -typedef BOPCol_DataMapOfIntegerShape::Iterator BOPCol_DataMapIteratorOfDataMapOfIntegerShape; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfShapeAddress.hxx b/src/BOPCol/BOPCol_DataMapOfShapeAddress.hxx deleted file mode 100644 index ec2687787b..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfShapeAddress.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfShapeAddress_HeaderFile -#define BOPCol_DataMapOfShapeAddress_HeaderFile - -#include -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfShapeAddress; -typedef BOPCol_DataMapOfShapeAddress::Iterator BOPCol_DataMapIteratorOfDataMapOfShapeAddress; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfShapeInteger.hxx b/src/BOPCol/BOPCol_DataMapOfShapeInteger.hxx deleted file mode 100644 index 8b96f8a185..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfShapeInteger.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfShapeInteger_HeaderFile -#define BOPCol_DataMapOfShapeInteger_HeaderFile - -#include -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfShapeInteger; -typedef BOPCol_DataMapOfShapeInteger::Iterator BOPCol_DataMapIteratorOfDataMapOfShapeInteger; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfShapeListOfShape.hxx b/src/BOPCol/BOPCol_DataMapOfShapeListOfShape.hxx deleted file mode 100644 index 38cc0464d7..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfShapeListOfShape.hxx +++ /dev/null @@ -1,27 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfShapeListOfShape_HeaderFile -#define BOPCol_DataMapOfShapeListOfShape_HeaderFile - -#include -#include -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfShapeListOfShape; -typedef BOPCol_DataMapOfShapeListOfShape::Iterator BOPCol_DataMapIteratorOfDataMapOfShapeListOfShape; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfShapeReal.hxx b/src/BOPCol/BOPCol_DataMapOfShapeReal.hxx deleted file mode 100644 index c61a7f0c62..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfShapeReal.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfShapeReal_HeaderFile -#define BOPCol_DataMapOfShapeReal_HeaderFile - -#include -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfShapeReal; -typedef BOPCol_DataMapOfShapeReal::Iterator BOPCol_DataMapIteratorOfDataMapOfShapeReal; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfShapeShape.hxx b/src/BOPCol/BOPCol_DataMapOfShapeShape.hxx deleted file mode 100644 index a627c9233d..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfShapeShape.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfShapeShape_HeaderFile -#define BOPCol_DataMapOfShapeShape_HeaderFile - -#include -#include - -#include - -typedef NCollection_DataMap BOPCol_DataMapOfShapeShape; -typedef BOPCol_DataMapOfShapeShape::Iterator BOPCol_DataMapIteratorOfDataMapOfShapeShape; - -#endif diff --git a/src/BOPCol/BOPCol_DataMapOfTransientAddress.hxx b/src/BOPCol/BOPCol_DataMapOfTransientAddress.hxx deleted file mode 100644 index d26d585913..0000000000 --- a/src/BOPCol/BOPCol_DataMapOfTransientAddress.hxx +++ /dev/null @@ -1,24 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_DataMapOfTransientAddress_HeaderFile -#define BOPCol_DataMapOfTransientAddress_HeaderFile - -#include -#include - -typedef NCollection_DataMap BOPCol_DataMapOfTransientAddress; -typedef BOPCol_DataMapOfTransientAddress::Iterator BOPCol_DataMapIteratorOfDataMapOfTransientAddress; - -#endif diff --git a/src/BOPCol/BOPCol_IndexedDataMapOfIntegerListOfInteger.hxx b/src/BOPCol/BOPCol_IndexedDataMapOfIntegerListOfInteger.hxx deleted file mode 100644 index 694e11aea7..0000000000 --- a/src/BOPCol/BOPCol_IndexedDataMapOfIntegerListOfInteger.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_IndexedDataMapOfIntegerListOfInteger_HeaderFile -#define BOPCol_IndexedDataMapOfIntegerListOfInteger_HeaderFile - - -#include - -#include -#include - -typedef NCollection_IndexedDataMap BOPCol_IndexedDataMapOfIntegerListOfInteger; - -#endif diff --git a/src/BOPCol/BOPCol_IndexedDataMapOfShapeBox.hxx b/src/BOPCol/BOPCol_IndexedDataMapOfShapeBox.hxx deleted file mode 100644 index f1179937df..0000000000 --- a/src/BOPCol/BOPCol_IndexedDataMapOfShapeBox.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_IndexedDataMapOfShapeBox_HeaderFile -#define BOPCol_IndexedDataMapOfShapeBox_HeaderFile - -#include -#include -#include - -#include - -typedef NCollection_IndexedDataMap BOPCol_IndexedDataMapOfShapeBox; - -#endif diff --git a/src/BOPCol/BOPCol_IndexedDataMapOfShapeInteger.hxx b/src/BOPCol/BOPCol_IndexedDataMapOfShapeInteger.hxx deleted file mode 100644 index 9eaf1b489e..0000000000 --- a/src/BOPCol/BOPCol_IndexedDataMapOfShapeInteger.hxx +++ /dev/null @@ -1,25 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_IndexedDataMapOfShapeInteger_HeaderFile -#define BOPCol_IndexedDataMapOfShapeInteger_HeaderFile - -#include -#include - -#include - -typedef NCollection_IndexedDataMap BOPCol_IndexedDataMapOfShapeInteger; - -#endif diff --git a/src/BOPCol/BOPCol_IndexedDataMapOfShapeListOfShape.hxx b/src/BOPCol/BOPCol_IndexedDataMapOfShapeListOfShape.hxx deleted file mode 100644 index 5986e80094..0000000000 --- a/src/BOPCol/BOPCol_IndexedDataMapOfShapeListOfShape.hxx +++ /dev/null @@ -1,27 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_IndexedDataMapOfShapeListOfShape_HeaderFile -#define BOPCol_IndexedDataMapOfShapeListOfShape_HeaderFile - - -#include -#include -#include - -#include - -typedef NCollection_IndexedDataMap BOPCol_IndexedDataMapOfShapeListOfShape; - -#endif diff --git a/src/BOPCol/BOPCol_IndexedMapOfInteger.hxx b/src/BOPCol/BOPCol_IndexedMapOfInteger.hxx deleted file mode 100644 index 448c1bfe58..0000000000 --- a/src/BOPCol/BOPCol_IndexedMapOfInteger.hxx +++ /dev/null @@ -1,23 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_IndexedMapOfInteger_HeaderFile -#define BOPCol_IndexedMapOfInteger_HeaderFile - -#include -#include - -typedef NCollection_IndexedMap BOPCol_IndexedMapOfInteger; - -#endif diff --git a/src/BOPCol/BOPCol_IndexedMapOfShape.hxx b/src/BOPCol/BOPCol_IndexedMapOfShape.hxx deleted file mode 100644 index 266b050a25..0000000000 --- a/src/BOPCol/BOPCol_IndexedMapOfShape.hxx +++ /dev/null @@ -1,24 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_IndexedMapOfShape_HeaderFile -#define BOPCol_IndexedMapOfShape_HeaderFile - -#include -#include -#include - -typedef NCollection_IndexedMap BOPCol_IndexedMapOfShape; - -#endif diff --git a/src/BOPCol/BOPCol_ListOfInteger.hxx b/src/BOPCol/BOPCol_ListOfInteger.hxx deleted file mode 100644 index fb3776f54c..0000000000 --- a/src/BOPCol/BOPCol_ListOfInteger.hxx +++ /dev/null @@ -1,24 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_ListOfInteger_HeaderFile -#define BOPCol_ListOfInteger_HeaderFile - -#include - -typedef NCollection_List BOPCol_ListOfInteger; -typedef BOPCol_ListOfInteger::Iterator BOPCol_ListIteratorOfListOfInteger; -typedef BOPCol_ListOfInteger* BOPCol_PListOfInteger; - -#endif diff --git a/src/BOPCol/BOPCol_ListOfListOfShape.hxx b/src/BOPCol/BOPCol_ListOfListOfShape.hxx deleted file mode 100644 index 54ef039184..0000000000 --- a/src/BOPCol/BOPCol_ListOfListOfShape.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_ListOfListOfShape_HeaderFile -#define BOPCol_ListOfListOfShape_HeaderFile - - -#include -#include - -typedef NCollection_List BOPCol_ListOfListOfShape; -typedef BOPCol_ListOfListOfShape::Iterator BOPCol_ListIteratorOfListOfListOfShape; - - -#endif diff --git a/src/BOPCol/BOPCol_ListOfShape.hxx b/src/BOPCol/BOPCol_ListOfShape.hxx deleted file mode 100644 index 3c3c92dc38..0000000000 --- a/src/BOPCol/BOPCol_ListOfShape.hxx +++ /dev/null @@ -1,25 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_ListOfShape_HeaderFile -#define BOPCol_ListOfShape_HeaderFile - -#include -#include - -typedef NCollection_List BOPCol_ListOfShape; -typedef BOPCol_ListOfShape::Iterator BOPCol_ListIteratorOfListOfShape; - - -#endif diff --git a/src/BOPCol/BOPCol_MapOfInteger.hxx b/src/BOPCol/BOPCol_MapOfInteger.hxx deleted file mode 100644 index 8ecce20858..0000000000 --- a/src/BOPCol/BOPCol_MapOfInteger.hxx +++ /dev/null @@ -1,24 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_MapOfInteger_HeaderFile -#define BOPCol_MapOfInteger_HeaderFile - -#include -#include - -typedef NCollection_Map BOPCol_MapOfInteger; -typedef BOPCol_MapOfInteger::Iterator BOPCol_MapIteratorOfMapOfInteger; - -#endif diff --git a/src/BOPCol/BOPCol_MapOfOrientedShape.hxx b/src/BOPCol/BOPCol_MapOfOrientedShape.hxx deleted file mode 100644 index ac93163b38..0000000000 --- a/src/BOPCol/BOPCol_MapOfOrientedShape.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_MapOfOrientedShape_HeaderFile -#define BOPCol_MapOfOrientedShape_HeaderFile - -#include -#include - -#include - -typedef NCollection_Map BOPCol_MapOfOrientedShape; -typedef BOPCol_MapOfOrientedShape::Iterator BOPCol_MapIteratorOfMapOfOrientedShape; - -#endif diff --git a/src/BOPCol/BOPCol_MapOfShape.hxx b/src/BOPCol/BOPCol_MapOfShape.hxx deleted file mode 100644 index 149f3bd502..0000000000 --- a/src/BOPCol/BOPCol_MapOfShape.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_MapOfShape_HeaderFile -#define BOPCol_MapOfShape_HeaderFile - -#include -#include - -#include - -typedef NCollection_Map BOPCol_MapOfShape; -typedef BOPCol_MapOfShape::Iterator BOPCol_MapIteratorOfMapOfShape; - -#endif diff --git a/src/BOPCol/BOPCol_NCVector.hxx b/src/BOPCol/BOPCol_NCVector.hxx deleted file mode 100755 index f3db4b5902..0000000000 --- a/src/BOPCol/BOPCol_NCVector.hxx +++ /dev/null @@ -1,48 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 1999-2013 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. - -#ifndef BOPCol_NCVector_HeaderFile -#define BOPCol_NCVector_HeaderFile - -#include -#include -#include - -//======================================================================= -//class : BOPCol_NCVector -//purpose : -//======================================================================= -template class BOPCol_NCVector - : - public NCollection_Vector -{ - public: - BOPCol_NCVector(const Standard_Integer theIncrement=256, - const Handle(NCollection_BaseAllocator)& theAlloc = NULL) - : NCollection_Vector(theIncrement, theAlloc) - {} - // - Type& Append1 () - { - Type& anAppended = *(Type*)this->expandV (this->myLength); - return anAppended; - } - // - Standard_Integer Extent() const - { - return this->myLength; - } -}; - -#endif diff --git a/src/BOPCol/BOPCol_PInteger.hxx b/src/BOPCol/BOPCol_PInteger.hxx deleted file mode 100644 index 6aa6e993f4..0000000000 --- a/src/BOPCol/BOPCol_PInteger.hxx +++ /dev/null @@ -1,23 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_PInteger_HeaderFile -#define BOPCol_PInteger_HeaderFile - -#include -#include - -typedef Standard_Integer* BOPCol_PInteger; - -#endif diff --git a/src/BOPCol/BOPCol_PListOfInteger.hxx b/src/BOPCol/BOPCol_PListOfInteger.hxx deleted file mode 100644 index 83952f3bad..0000000000 --- a/src/BOPCol/BOPCol_PListOfInteger.hxx +++ /dev/null @@ -1,20 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_PListOfInteger_HeaderFile -#define BOPCol_PListOfInteger_HeaderFile - -#include - -#endif diff --git a/src/BOPCol/BOPCol_SequenceOfPnt2d.hxx b/src/BOPCol/BOPCol_SequenceOfPnt2d.hxx deleted file mode 100644 index d44c7d718d..0000000000 --- a/src/BOPCol/BOPCol_SequenceOfPnt2d.hxx +++ /dev/null @@ -1,25 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_SequenceOfPnt2d_HeaderFile -#define BOPCol_SequenceOfPnt2d_HeaderFile - - -#include -#include - -typedef NCollection_Sequence BOPCol_SequenceOfPnt2d; - - -#endif diff --git a/src/BOPCol/BOPCol_SequenceOfShape.hxx b/src/BOPCol/BOPCol_SequenceOfShape.hxx deleted file mode 100644 index d6efcf9445..0000000000 --- a/src/BOPCol/BOPCol_SequenceOfShape.hxx +++ /dev/null @@ -1,24 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPCol_SequenceOfShape_HeaderFile -#define BOPCol_SequenceOfShape_HeaderFile - -#include -#include - -typedef NCollection_Sequence BOPCol_SequenceOfShape; - - -#endif diff --git a/src/BOPCol/FILES b/src/BOPCol/FILES deleted file mode 100644 index 44b7ac25c0..0000000000 --- a/src/BOPCol/FILES +++ /dev/null @@ -1,40 +0,0 @@ -BOPCol_BaseAllocator.hxx -BOPCol_Box2DBndTree.cxx -BOPCol_Box2DBndTree.hxx -BOPCol_BoxBndTree.cxx -BOPCol_BoxBndTree.hxx -BOPCol_DataMapOfIntegerInteger.hxx -BOPCol_DataMapOfIntegerListOfInteger.hxx -BOPCol_DataMapOfIntegerListOfShape.hxx -BOPCol_DataMapOfIntegerMapOfInteger.hxx -BOPCol_DataMapOfIntegerReal.hxx -BOPCol_DataMapOfIntegerShape.hxx -BOPCol_DataMapOfShapeAddress.hxx -BOPCol_DataMapOfShapeBox.hxx -BOPCol_DataMapOfShapeInteger.hxx -BOPCol_DataMapOfShapeListOfShape.hxx -BOPCol_DataMapOfShapeReal.hxx -BOPCol_DataMapOfShapeShape.hxx -BOPCol_DataMapOfTransientAddress.hxx -BOPCol_IndexedDataMapOfIntegerListOfInteger.hxx -BOPCol_IndexedDataMapOfShapeBox.hxx -BOPCol_IndexedDataMapOfShapeInteger.hxx -BOPCol_IndexedDataMapOfShapeListOfShape.hxx -BOPCol_IndexedMapOfInteger.hxx -BOPCol_IndexedMapOfShape.hxx -BOPCol_IndexedDataMapOfShapeShape.hxx -BOPCol_IndexedDataMapOfShapeReal.hxx -BOPCol_IndexedMapOfOrientedShape.hxx -BOPCol_ListOfInteger.hxx -BOPCol_ListOfListOfShape.hxx -BOPCol_ListOfShape.hxx -BOPCol_MapOfInteger.hxx -BOPCol_MapOfOrientedShape.hxx -BOPCol_MapOfShape.hxx -BOPCol_NCVector.hxx -BOPCol_Parallel.hxx -BOPCol_PInteger.hxx -BOPCol_PListOfInteger.hxx -BOPCol_SequenceOfPnt2d.hxx -BOPCol_SequenceOfReal.hxx -BOPCol_SequenceOfShape.hxx diff --git a/src/BOPDS/BOPDS_CommonBlock.cxx b/src/BOPDS/BOPDS_CommonBlock.cxx index e6496a5d6b..7bf768a582 100644 --- a/src/BOPDS/BOPDS_CommonBlock.cxx +++ b/src/BOPDS/BOPDS_CommonBlock.cxx @@ -87,7 +87,7 @@ IMPLEMENT_STANDARD_RTTIEXT(BOPDS_CommonBlock,Standard_Transient) // function: AddFaces // purpose: //======================================================================= - void BOPDS_CommonBlock::SetFaces(const BOPCol_ListOfInteger& aLF) + void BOPDS_CommonBlock::SetFaces(const TColStd_ListOfInteger& aLF) { myFaces=aLF; } @@ -95,7 +95,7 @@ IMPLEMENT_STANDARD_RTTIEXT(BOPDS_CommonBlock,Standard_Transient) // function: AppendFaces // purpose: //======================================================================= -void BOPDS_CommonBlock::AppendFaces(BOPCol_ListOfInteger& aLF) +void BOPDS_CommonBlock::AppendFaces(TColStd_ListOfInteger& aLF) { myFaces.Append(aLF); } @@ -103,7 +103,7 @@ void BOPDS_CommonBlock::AppendFaces(BOPCol_ListOfInteger& aLF) // function: Faces // purpose: //======================================================================= - const BOPCol_ListOfInteger& BOPDS_CommonBlock::Faces()const + const TColStd_ListOfInteger& BOPDS_CommonBlock::Faces()const { return myFaces; } @@ -144,7 +144,7 @@ void BOPDS_CommonBlock::AppendFaces(BOPCol_ListOfInteger& aLF) { Standard_Boolean bFound; Standard_Integer nF; - BOPCol_ListIteratorOfListOfInteger anIt; + TColStd_ListIteratorOfListOfInteger anIt; // bFound=Standard_False; anIt.Initialize(myFaces); @@ -236,7 +236,7 @@ void BOPDS_CommonBlock::AppendFaces(BOPCol_ListOfInteger& aLF) Standard_Boolean BOPDS_CommonBlock::Contains(const Standard_Integer theF)const { Standard_Boolean bFound; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; // bFound=Standard_False; aIt.Initialize(myFaces); @@ -254,7 +254,7 @@ void BOPDS_CommonBlock::AppendFaces(BOPCol_ListOfInteger& aLF) void BOPDS_CommonBlock::Dump()const { Standard_Integer nF; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; BOPDS_ListIteratorOfListOfPaveBlock aItPB; // printf(" -- CB:\n"); diff --git a/src/BOPDS/BOPDS_CommonBlock.hxx b/src/BOPDS/BOPDS_CommonBlock.hxx index f1e79b0340..71c9204340 100644 --- a/src/BOPDS/BOPDS_CommonBlock.hxx +++ b/src/BOPDS/BOPDS_CommonBlock.hxx @@ -19,11 +19,11 @@ #include #include -#include -#include -#include -#include +#include #include +#include +#include +#include class BOPDS_PaveBlock; @@ -51,7 +51,7 @@ public: //! Contructor //! - the allocator to manage the memory - Standard_EXPORT BOPDS_CommonBlock(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPDS_CommonBlock(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier @@ -77,13 +77,13 @@ public: //! Modifier //! Sets the list of indices of faces //! of the common block - Standard_EXPORT void SetFaces (const BOPCol_ListOfInteger& aLF); + Standard_EXPORT void SetFaces (const TColStd_ListOfInteger& aLF); //! Modifier //! Appends the list of indices of faces //! to the list of indices of faces //! of the common block (the input list is emptied) - Standard_EXPORT void AppendFaces(BOPCol_ListOfInteger& aLF); + Standard_EXPORT void AppendFaces(TColStd_ListOfInteger& aLF); //! Selector @@ -95,7 +95,7 @@ public: //! Selector //! Returns the list of indices of faces //! of the common block - Standard_EXPORT const BOPCol_ListOfInteger& Faces() const; + Standard_EXPORT const TColStd_ListOfInteger& Faces() const; //! Selector @@ -158,7 +158,7 @@ protected: BOPDS_ListOfPaveBlock myPaveBlocks; - BOPCol_ListOfInteger myFaces; + TColStd_ListOfInteger myFaces; private: diff --git a/src/BOPDS/BOPDS_Curve.hxx b/src/BOPDS/BOPDS_Curve.hxx index e752f295f9..c237f6f532 100644 --- a/src/BOPDS/BOPDS_Curve.hxx +++ b/src/BOPDS/BOPDS_Curve.hxx @@ -19,12 +19,12 @@ #include #include -#include -#include -#include -#include #include +#include +#include +#include #include +#include class IntTools_Curve; class Bnd_Box; class BOPDS_PaveBlock; @@ -48,7 +48,7 @@ virtual ~BOPDS_Curve(); //! Contructor //! - the allocator to manage the memory - BOPDS_Curve(const BOPCol_BaseAllocator& theAllocator); + BOPDS_Curve(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier @@ -104,13 +104,13 @@ virtual ~BOPDS_Curve(); //! Selector //! Returns list of indices of technologic vertices //! of the curve - const BOPCol_ListOfInteger& TechnoVertices() const; + const TColStd_ListOfInteger& TechnoVertices() const; //! Selector/Modifier //! Returns list of indices of technologic vertices //! of the curve - BOPCol_ListOfInteger& ChangeTechnoVertices(); + TColStd_ListOfInteger& ChangeTechnoVertices(); //! Query @@ -138,10 +138,10 @@ virtual ~BOPDS_Curve(); protected: - BOPCol_BaseAllocator myAllocator; + Handle(NCollection_BaseAllocator) myAllocator; IntTools_Curve myCurve; BOPDS_ListOfPaveBlock myPaveBlocks; - BOPCol_ListOfInteger myTechnoVertices; + TColStd_ListOfInteger myTechnoVertices; Bnd_Box myBox; Standard_Real myTolerance; diff --git a/src/BOPDS/BOPDS_Curve.lxx b/src/BOPDS/BOPDS_Curve.lxx index 39a9cea043..0c4213f998 100644 --- a/src/BOPDS/BOPDS_Curve.lxx +++ b/src/BOPDS/BOPDS_Curve.lxx @@ -115,7 +115,7 @@ //function : TechnoVertices //purpose : //======================================================================= - inline const BOPCol_ListOfInteger& BOPDS_Curve::TechnoVertices()const + inline const TColStd_ListOfInteger& BOPDS_Curve::TechnoVertices()const { return myTechnoVertices; } @@ -123,7 +123,7 @@ //function : ChangeTechnoVertices //purpose : //======================================================================= - inline BOPCol_ListOfInteger& BOPDS_Curve::ChangeTechnoVertices() + inline TColStd_ListOfInteger& BOPDS_Curve::ChangeTechnoVertices() { return myTechnoVertices; } diff --git a/src/BOPDS/BOPDS_DS.cxx b/src/BOPDS/BOPDS_DS.cxx index 443587d931..aeb49a0161 100644 --- a/src/BOPDS/BOPDS_DS.cxx +++ b/src/BOPDS/BOPDS_DS.cxx @@ -14,10 +14,6 @@ #include -#include -#include -#include -#include #include #include #include @@ -49,16 +45,18 @@ #include #include #include -#include -#include - +#include +#include +#include +#include +#include #include // static void TotalShapes(const TopoDS_Shape& aS, Standard_Integer& aNbS, - BOPCol_MapOfShape& aMS); + TopTools_MapOfShape& aMS); static Standard_Real ComputeParameter(const TopoDS_Vertex& aV, @@ -168,7 +166,7 @@ void BOPDS_DS::Clear() //function : SetArguments //purpose : //======================================================================= -void BOPDS_DS::SetArguments(const BOPCol_ListOfShape& theLS) +void BOPDS_DS::SetArguments(const TopTools_ListOfShape& theLS) { myArguments=theLS; } @@ -176,7 +174,7 @@ void BOPDS_DS::SetArguments(const BOPCol_ListOfShape& theLS) //function : Arguments //purpose : //======================================================================= -const BOPCol_ListOfShape& BOPDS_DS::Arguments()const +const TopTools_ListOfShape& BOPDS_DS::Arguments()const { return myArguments; } @@ -255,8 +253,8 @@ Standard_Integer BOPDS_DS::Append(const BOPDS_ShapeInfo& theSI) { Standard_Integer iX; // - myLines.Append1()=theSI; - iX=myLines.Extent()-1; + myLines.Appended()=theSI; + iX=myLines.Length()-1; myMapShapeIndex.Bind(theSI.Shape(), iX); // return iX; @@ -269,8 +267,8 @@ Standard_Integer BOPDS_DS::Append(const TopoDS_Shape& theS) { Standard_Integer iX; // - myLines.Append1().SetShape(theS); - iX=myLines.Extent()-1; + myLines.Appended().SetShape(theS); + iX=myLines.Length()-1; myMapShapeIndex.Bind(theS, iX); return iX; } @@ -330,11 +328,11 @@ void BOPDS_DS::Init(const Standard_Real theFuzz) Standard_Real aTol, aTolAdd; TopAbs_ShapeEnum aTS; TopoDS_Iterator aItS; - BOPCol_ListIteratorOfListOfInteger aIt1, aIt2, aIt3; - BOPCol_ListIteratorOfListOfShape aIt; + TColStd_ListIteratorOfListOfInteger aIt1, aIt2, aIt3; + TopTools_ListIteratorOfListOfShape aIt; BOPDS_IndexRange aR; Handle(NCollection_BaseAllocator) aAllocator; - BOPCol_MapOfShape aMS; + TopTools_MapOfShape aMS; // // 1 Append Source Shapes aNb=myArguments.Extent(); @@ -424,7 +422,7 @@ void BOPDS_DS::Init(const Standard_Real theFuzz) BRep_Builder aBB; BOPDS_ShapeInfo aSIx; // - BOPCol_ListOfInteger& aLI=aSI.ChangeSubShapes(); + TColStd_ListOfInteger& aLI=aSI.ChangeSubShapes(); // aEx=aE; aEx.Orientation(TopAbs_FORWARD); @@ -465,7 +463,7 @@ void BOPDS_DS::Init(const Standard_Real theFuzz) Bnd_Box& aBox=aSI.ChangeBox(); BRepBndLib::Add(aE, aBox); // - const BOPCol_ListOfInteger& aLV=aSI.SubShapes(); + const TColStd_ListOfInteger& aLV=aSI.SubShapes(); aIt1.Initialize(aLV); for (; aIt1.More(); aIt1.Next()) { nV=aIt1.Value(); @@ -478,8 +476,8 @@ void BOPDS_DS::Init(const Standard_Real theFuzz) } } // 2.3 Face - BOPCol_MapOfInteger aMI(100, aAllocator); - BOPCol_MapIteratorOfMapOfInteger aItMI; + TColStd_MapOfInteger aMI(100, aAllocator); + TColStd_MapIteratorOfMapOfInteger aItMI; // aNbF=0; for (j=0; jAppend(nE); } else @@ -653,13 +651,13 @@ void BOPDS_DS::InitShape { Standard_Integer aIx; TopoDS_Iterator aIt; - BOPCol_ListIteratorOfListOfInteger aIt1; + TColStd_ListIteratorOfListOfInteger aIt1; // BOPDS_ShapeInfo& aSI=ChangeShapeInfo(aI); aSI.SetShapeType(aS.ShapeType()); - BOPCol_ListOfInteger& aLI=aSI.ChangeSubShapes(); + TColStd_ListOfInteger& aLI=aSI.ChangeSubShapes(); // - BOPCol_MapOfInteger aM; + TColStd_MapOfInteger aM; // aIt1.Initialize(aLI); for (; aIt1.More(); aIt1.Next()) { @@ -715,11 +713,11 @@ Standard_Boolean BOPDS_DS::HasInterfShapeSubShapes { Standard_Boolean bRet; Standard_Integer n2; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; bRet = Standard_False; // const BOPDS_ShapeInfo& aSI=ShapeInfo(theI2); - const BOPCol_ListOfInteger& aLI=aSI.SubShapes(); + const TColStd_ListOfInteger& aLI=aSI.SubShapes(); aIt.Initialize(aLI); for (; aIt.More(); aIt.Next()) { n2=aIt.Value(); @@ -747,11 +745,11 @@ Standard_Boolean BOPDS_DS::HasInterfSubShapes { Standard_Boolean bRet; Standard_Integer n1; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; bRet = Standard_False; // const BOPDS_ShapeInfo& aSI=ShapeInfo(theI1); - const BOPCol_ListOfInteger& aLI=aSI.SubShapes(); + const TColStd_ListOfInteger& aLI=aSI.SubShapes(); aIt.Initialize(aLI); for (; aIt.More(); aIt.Next()) { n1=aIt.Value(); @@ -835,7 +833,7 @@ void BOPDS_DS::InitPaveBlocks(const Standard_Integer theI) Standard_Real aT; TopAbs_Orientation aOrE; TopoDS_Vertex aV; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; BOPDS_Pave aPave; Handle(BOPDS_PaveBlock) aPB; // @@ -843,7 +841,7 @@ void BOPDS_DS::InitPaveBlocks(const Standard_Integer theI) const TopoDS_Edge& aE=*(TopoDS_Edge*)(&aSI.Shape()); aOrE=aE.Orientation(); // - const BOPCol_ListOfInteger& aLV=aSI.SubShapes(); + const TColStd_ListOfInteger& aLV=aSI.SubShapes(); aNbV=aLV.Extent(); if (!aNbV) { return; @@ -912,8 +910,8 @@ void BOPDS_DS::InitPaveBlocks(const Standard_Integer theI) } } // - BOPDS_ListOfPaveBlock &aLPB=myPaveBlocksPool.Append1(); - iRef=myPaveBlocksPool.Extent()-1; + BOPDS_ListOfPaveBlock &aLPB=myPaveBlocksPool.Appended(); + iRef=myPaveBlocksPool.Length()-1; // aPB->Update(aLPB, Standard_False); aSI.SetReference(iRef); @@ -1006,7 +1004,7 @@ void BOPDS_DS::UpdateCommonBlock(const Handle(BOPDS_CommonBlock)& theCB, return; } // - const BOPCol_ListOfInteger& aLF=theCB->Faces(); + const TColStd_ListOfInteger& aLF=theCB->Faces(); // BOPDS_VectorOfListOfPaveBlock& aPBP=myPaveBlocksPool; // @@ -1221,8 +1219,8 @@ void BOPDS_DS::InitFaceInfo(const Standard_Integer theI) Standard_Integer iRef; // BOPDS_ShapeInfo& aSI=ChangeShapeInfo(theI); - BOPDS_FaceInfo &aFI=myFaceInfoPool.Append1(); - iRef=myFaceInfoPool.Extent()-1; + BOPDS_FaceInfo &aFI=myFaceInfoPool.Appended(); + iRef=myFaceInfoPool.Length()-1; aSI.SetReference(iRef); // aFI.SetIndex(theI); @@ -1243,7 +1241,7 @@ void BOPDS_DS::UpdateFaceInfoIn(const Standard_Integer theI) BOPDS_FaceInfo &aFI=myFaceInfoPool(iRef); // BOPDS_IndexedMapOfPaveBlock& aMPBIn=aFI.ChangePaveBlocksIn(); - BOPCol_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); + TColStd_MapOfInteger& aMVIn=aFI.ChangeVerticesIn(); aMPBIn.Clear(); aMVIn.Clear(); FaceInfoIn(theI, aMPBIn, aMVIn); @@ -1263,7 +1261,7 @@ void BOPDS_DS::UpdateFaceInfoOn(const Standard_Integer theI) BOPDS_FaceInfo &aFI=myFaceInfoPool(iRef); // BOPDS_IndexedMapOfPaveBlock& aMPBOn=aFI.ChangePaveBlocksOn(); - BOPCol_MapOfInteger& aMVOn=aFI.ChangeVerticesOn(); + TColStd_MapOfInteger& aMVOn=aFI.ChangeVerticesOn(); aMPBOn.Clear(); aMVOn.Clear(); FaceInfoOn(theI, aMPBOn, aMVOn); @@ -1275,14 +1273,14 @@ void BOPDS_DS::UpdateFaceInfoOn(const Standard_Integer theI) //======================================================================= void BOPDS_DS::FaceInfoOn(const Standard_Integer theF, BOPDS_IndexedMapOfPaveBlock& theMPB, - BOPCol_MapOfInteger& theMI) + TColStd_MapOfInteger& theMI) { Standard_Integer nS, nSD, nV1, nV2; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; BOPDS_ListIteratorOfListOfPaveBlock aItPB; // const BOPDS_ShapeInfo& aSI=ShapeInfo(theF); - const BOPCol_ListOfInteger& aLI=aSI.SubShapes(); + const TColStd_ListOfInteger& aLI=aSI.SubShapes(); aIt.Initialize(aLI); for (; aIt.More(); aIt.Next()) { nS=aIt.Value(); @@ -1314,7 +1312,7 @@ void BOPDS_DS::FaceInfoOn(const Standard_Integer theF, //======================================================================= void BOPDS_DS::FaceInfoIn(const Standard_Integer theF, BOPDS_IndexedMapOfPaveBlock& theMPB, - BOPCol_MapOfInteger& theMI) + TColStd_MapOfInteger& theMI) { Standard_Integer i, aNbVF, aNbEF, nV, nE, nVSD; TopoDS_Iterator aItS; @@ -1336,7 +1334,7 @@ void BOPDS_DS::FaceInfoIn(const Standard_Integer theF, // // 2. aVFs BOPDS_VectorOfInterfVF& aVFs=InterfVF(); - aNbVF=aVFs.Extent(); + aNbVF=aVFs.Length(); for (i=0; i #include -#include -#include -#include -#include -#include -#include -#include #include -#include -#include -#include +#include +#include +#include #include -#include -#include -#include +#include +#include +#include #include #include -#include -#include #include +#include #include +#include +#include +#include +#include #include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include + class BOPDS_IndexRange; class BOPDS_ShapeInfo; class TopoDS_Shape; @@ -92,7 +93,7 @@ Standard_EXPORT virtual ~BOPDS_DS(); //! Contructor //! theAllocator - the allocator to manage the memory - Standard_EXPORT BOPDS_DS(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPDS_DS(const Handle(NCollection_BaseAllocator)& theAllocator); //! Clears the contents @@ -100,17 +101,17 @@ Standard_EXPORT virtual ~BOPDS_DS(); //! Selector - Standard_EXPORT const BOPCol_BaseAllocator& Allocator() const; + Standard_EXPORT const Handle(NCollection_BaseAllocator)& Allocator() const; //! Modifier //! Sets the arguments [theLS] of an operation - Standard_EXPORT void SetArguments (const BOPCol_ListOfShape& theLS); + Standard_EXPORT void SetArguments (const TopTools_ListOfShape& theLS); //! Selector //! Returns the arguments of an operation - Standard_EXPORT const BOPCol_ListOfShape& Arguments() const; + Standard_EXPORT const TopTools_ListOfShape& Arguments() const; //! Initializes the data structure for @@ -281,19 +282,19 @@ Standard_EXPORT virtual ~BOPDS_DS(); //! Selector //! Returns the state On //! [theMPB,theMVP] of face with index theIndex - Standard_EXPORT void FaceInfoOn (const Standard_Integer theIndex, BOPDS_IndexedMapOfPaveBlock& theMPB, BOPCol_MapOfInteger& theMVP); + Standard_EXPORT void FaceInfoOn (const Standard_Integer theIndex, BOPDS_IndexedMapOfPaveBlock& theMPB, TColStd_MapOfInteger& theMVP); //! Selector //! Returns the state In //! [theMPB,theMVP] of face with index theIndex - Standard_EXPORT void FaceInfoIn (const Standard_Integer theIndex, BOPDS_IndexedMapOfPaveBlock& theMPB, BOPCol_MapOfInteger& theMVP); + Standard_EXPORT void FaceInfoIn (const Standard_Integer theIndex, BOPDS_IndexedMapOfPaveBlock& theMPB, TColStd_MapOfInteger& theMVP); //! Selector //! Returns the indices of alone vertices //! for the face with index theIndex - Standard_EXPORT void AloneVertices (const Standard_Integer theF, BOPCol_ListOfInteger& theLI) const; + Standard_EXPORT void AloneVertices (const Standard_Integer theF, TColStd_ListOfInteger& theLI) const; //! Refine the state On for the all faces having @@ -309,7 +310,7 @@ Standard_EXPORT virtual ~BOPDS_DS(); //! @param theCommonPB the common pave blocks (that are shared by both faces). Standard_EXPORT void SubShapesOnIn (const Standard_Integer theF1, const Standard_Integer theF2, - BOPCol_MapOfInteger& theMVOnIn, + TColStd_MapOfInteger& theMVOnIn, BOPDS_IndexedMapOfPaveBlock& thePBOnIn, BOPDS_MapOfPaveBlock& theCommonPB) const; @@ -318,12 +319,12 @@ Standard_EXPORT virtual ~BOPDS_DS(); //! for the faces with indices theF1, theF2 //! //! same domain shapes - Standard_EXPORT void SharedEdges (const Standard_Integer theF1, const Standard_Integer theF2, BOPCol_ListOfInteger& theLI, const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT void SharedEdges (const Standard_Integer theF1, const Standard_Integer theF2, TColStd_ListOfInteger& theLI, const Handle(NCollection_BaseAllocator)& theAllocator); //! Selector //! Returns the collection same domain shapes - Standard_EXPORT BOPCol_DataMapOfIntegerInteger& ShapesSD(); + Standard_EXPORT TColStd_DataMapOfIntegerInteger& ShapesSD(); //! Modifier @@ -492,18 +493,18 @@ protected: const Standard_Real theFuzz); - BOPCol_BaseAllocator myAllocator; - BOPCol_ListOfShape myArguments; + Handle(NCollection_BaseAllocator) myAllocator; + TopTools_ListOfShape myArguments; Standard_Integer myNbShapes; Standard_Integer myNbSourceShapes; BOPDS_VectorOfIndexRange myRanges; BOPDS_VectorOfShapeInfo myLines; - BOPCol_DataMapOfShapeInteger myMapShapeIndex; + TopTools_DataMapOfShapeInteger myMapShapeIndex; BOPDS_VectorOfListOfPaveBlock myPaveBlocksPool; BOPDS_DataMapOfPaveBlockCommonBlock myMapPBCB; BOPDS_VectorOfFaceInfo myFaceInfoPool; - BOPCol_DataMapOfIntegerInteger myShapesSD; - BOPCol_DataMapOfIntegerListOfInteger myMapVE; + TColStd_DataMapOfIntegerInteger myShapesSD; + TColStd_DataMapOfIntegerListOfInteger myMapVE; BOPDS_MapOfPair myInterfTB; BOPDS_VectorOfInterfVV myInterfVV; BOPDS_VectorOfInterfVE myInterfVE; diff --git a/src/BOPDS/BOPDS_DataMapOfPassKeyListOfPaveBlock.hxx b/src/BOPDS/BOPDS_DataMapOfPassKeyListOfPaveBlock.hxx deleted file mode 100644 index 631e1e8f4e..0000000000 --- a/src/BOPDS/BOPDS_DataMapOfPassKeyListOfPaveBlock.hxx +++ /dev/null @@ -1,27 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPDS_DataMapOfPassKeyListOfPaveBlock_HeaderFile -#define BOPDS_DataMapOfPassKeyListOfPaveBlock_HeaderFile - -#include - -#include -#include -#include - -typedef NCollection_DataMap BOPDS_DataMapOfPassKeyListOfPaveBlock; -typedef BOPDS_DataMapOfPassKeyListOfPaveBlock::Iterator BOPDS_DataMapIteratorOfDataMapOfPassKeyListOfPaveBlock; - -#endif diff --git a/src/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx b/src/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx index a1438741dd..7fc61c0e08 100644 --- a/src/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx +++ b/src/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx @@ -17,9 +17,9 @@ #include #include -#include +#include -typedef NCollection_DataMap BOPDS_DataMapOfPaveBlockListOfInteger; +typedef NCollection_DataMap BOPDS_DataMapOfPaveBlockListOfInteger; typedef BOPDS_DataMapOfPaveBlockListOfInteger::Iterator BOPDS_DataMapIteratorOfDataMapOfPaveBlockListOfInteger; #endif diff --git a/src/BOPDS/BOPDS_FaceInfo.hxx b/src/BOPDS/BOPDS_FaceInfo.hxx index 5b103bafc9..30519cfc15 100644 --- a/src/BOPDS/BOPDS_FaceInfo.hxx +++ b/src/BOPDS/BOPDS_FaceInfo.hxx @@ -22,10 +22,10 @@ #include #include -#include -#include #include -#include +#include +#include +#include @@ -46,7 +46,7 @@ virtual ~BOPDS_FaceInfo(); //! Contructor //! theAllocator - the allocator to manage the memory - BOPDS_FaceInfo(const BOPCol_BaseAllocator& theAllocator); + BOPDS_FaceInfo(const Handle(NCollection_BaseAllocator)& theAllocator); //! Clears the contents @@ -82,7 +82,7 @@ virtual ~BOPDS_FaceInfo(); //! Returns the list of indices for vertices //! of the face //! that have state In - const BOPCol_MapOfInteger& VerticesIn() const; + const TColStd_MapOfInteger& VerticesIn() const; //! Selector/Modifier @@ -91,7 +91,7 @@ virtual ~BOPDS_FaceInfo(); //! that have state In //! //! On - BOPCol_MapOfInteger& ChangeVerticesIn(); + TColStd_MapOfInteger& ChangeVerticesIn(); //! Selector @@ -111,7 +111,7 @@ virtual ~BOPDS_FaceInfo(); //! Returns the list of indices for vertices //! of the face //! that have state On - const BOPCol_MapOfInteger& VerticesOn() const; + const TColStd_MapOfInteger& VerticesOn() const; //! Selector/Modifier @@ -120,7 +120,7 @@ virtual ~BOPDS_FaceInfo(); //! that have state On //! //! Sections - BOPCol_MapOfInteger& ChangeVerticesOn(); + TColStd_MapOfInteger& ChangeVerticesOn(); //! Selector @@ -134,7 +134,7 @@ virtual ~BOPDS_FaceInfo(); //! Selector //! Returns the list of indices for section vertices //! of the face - const BOPCol_MapOfInteger& VerticesSc() const; + const TColStd_MapOfInteger& VerticesSc() const; //! Selector/Modifier @@ -142,7 +142,7 @@ virtual ~BOPDS_FaceInfo(); //! of the face //! //! Others - BOPCol_MapOfInteger& ChangeVerticesSc(); + TColStd_MapOfInteger& ChangeVerticesSc(); @@ -151,14 +151,14 @@ protected: - BOPCol_BaseAllocator myAllocator; + Handle(NCollection_BaseAllocator) myAllocator; Standard_Integer myIndex; BOPDS_IndexedMapOfPaveBlock myPaveBlocksIn; - BOPCol_MapOfInteger myVerticesIn; + TColStd_MapOfInteger myVerticesIn; BOPDS_IndexedMapOfPaveBlock myPaveBlocksOn; - BOPCol_MapOfInteger myVerticesOn; + TColStd_MapOfInteger myVerticesOn; BOPDS_IndexedMapOfPaveBlock myPaveBlocksSc; - BOPCol_MapOfInteger myVerticesSc; + TColStd_MapOfInteger myVerticesSc; private: diff --git a/src/BOPDS/BOPDS_FaceInfo.lxx b/src/BOPDS/BOPDS_FaceInfo.lxx index 581f1153c8..bf0367a59f 100644 --- a/src/BOPDS/BOPDS_FaceInfo.lxx +++ b/src/BOPDS/BOPDS_FaceInfo.lxx @@ -102,7 +102,7 @@ //function : VerticesIn //purpose : //======================================================================= - inline const BOPCol_MapOfInteger& BOPDS_FaceInfo::VerticesIn()const + inline const TColStd_MapOfInteger& BOPDS_FaceInfo::VerticesIn()const { return myVerticesIn; } @@ -110,7 +110,7 @@ //function : ChangeVerticesIn //purpose : //======================================================================= - inline BOPCol_MapOfInteger& BOPDS_FaceInfo::ChangeVerticesIn() + inline TColStd_MapOfInteger& BOPDS_FaceInfo::ChangeVerticesIn() { return myVerticesIn; } @@ -135,7 +135,7 @@ //function : VerticesOn //purpose : //======================================================================= - inline const BOPCol_MapOfInteger& BOPDS_FaceInfo::VerticesOn()const + inline const TColStd_MapOfInteger& BOPDS_FaceInfo::VerticesOn()const { return myVerticesOn; } @@ -143,7 +143,7 @@ //function : ChangeVerticesOn //purpose : //======================================================================= - inline BOPCol_MapOfInteger& BOPDS_FaceInfo::ChangeVerticesOn() + inline TColStd_MapOfInteger& BOPDS_FaceInfo::ChangeVerticesOn() { return myVerticesOn; } @@ -168,7 +168,7 @@ //function : VerticesSc //purpose : //======================================================================= - inline const BOPCol_MapOfInteger& BOPDS_FaceInfo::VerticesSc()const + inline const TColStd_MapOfInteger& BOPDS_FaceInfo::VerticesSc()const { return myVerticesSc; } @@ -176,7 +176,7 @@ //function : ChangeVerticesSc //purpose : //======================================================================= - inline BOPCol_MapOfInteger& BOPDS_FaceInfo::ChangeVerticesSc() + inline TColStd_MapOfInteger& BOPDS_FaceInfo::ChangeVerticesSc() { return myVerticesSc; } diff --git a/src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx b/src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx index ac4f3f3c4a..2236e4d33c 100644 --- a/src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx +++ b/src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx @@ -17,9 +17,9 @@ #include #include -#include +#include #include -typedef NCollection_IndexedDataMap BOPDS_IndexedDataMapOfPaveBlockListOfInteger; +typedef NCollection_IndexedDataMap BOPDS_IndexedDataMapOfPaveBlockListOfInteger; #endif diff --git a/src/BOPDS/BOPDS_Iterator.cxx b/src/BOPDS/BOPDS_Iterator.cxx index d3e80582ad..d29b24b558 100644 --- a/src/BOPDS/BOPDS_Iterator.cxx +++ b/src/BOPDS/BOPDS_Iterator.cxx @@ -17,16 +17,16 @@ #include -#include -#include -#include #include #include #include #include #include #include +#include +#include #include +#include #include #include @@ -35,10 +35,10 @@ //class : BOPDS_TreeSelector //purpose : //======================================================================= -class BOPDS_TSR : public BOPCol_BoxBndTreeSelector{ +class BOPDS_TSR : public BOPTools_BoxBndTreeSelector{ public: BOPDS_TSR() : - BOPCol_BoxBndTreeSelector(), + BOPTools_BoxBndTreeSelector(), myHasBRep(Standard_False), myTree(NULL) { } @@ -50,7 +50,7 @@ class BOPDS_TSR : public BOPCol_BoxBndTreeSelector{ myHasBRep=bFlag; } // - void SetTree(BOPCol_BoxBndTree& aTree) { + void SetTree(BOPTools_BoxBndTree& aTree) { myTree=&aTree; } // @@ -62,13 +62,13 @@ class BOPDS_TSR : public BOPCol_BoxBndTreeSelector{ // protected: Standard_Boolean myHasBRep; - BOPCol_BoxBndTree *myTree; + BOPTools_BoxBndTree *myTree; }; // //======================================================================= -typedef BOPCol_NCVector BOPDS_VectorOfTSR; -typedef BOPCol_Functor BOPDS_TSRFunctor; -typedef BOPCol_Cnt BOPDS_TSRCnt; +typedef NCollection_Vector BOPDS_VectorOfTSR; +typedef BOPTools_Functor BOPDS_TSRFunctor; +typedef BOPTools_Cnt BOPDS_TSRCnt; ///////////////////////////////////////////////////////////////////////// @@ -89,7 +89,7 @@ BOPDS_Iterator::BOPDS_Iterator() aNb=BOPDS_DS::NbInterfTypes(); myLists.SetIncrement(aNb); for (i=0; i aTreeFiller(aBBTree); // aNb = myDS->NbSourceShapes(); @@ -276,7 +276,7 @@ void BOPDS_Iterator::Intersect() const BOPDS_ShapeInfo& aSI=myDS->ShapeInfo(i); Standard_Boolean bHasBrep = aSI.IsInterfering() && !(aSI.ShapeType() == TopAbs_SOLID); // - BOPDS_TSR& aTSR=aVTSR.Append1(); + BOPDS_TSR& aTSR=aVTSR.Appended(); // aTSR.SetHasBRep(bHasBrep); if (!bHasBrep) { @@ -311,7 +311,7 @@ void BOPDS_Iterator::Intersect() } // BOPDS_TSR& aTSRi = aVTSR(i); - const BOPCol_ListOfInteger& aLI = aTSRi.Indices(); + const TColStd_ListOfInteger& aLI = aTSRi.Indices(); Standard_Integer aNbSD = aLI.Extent(); if (!aNbSD) { continue; @@ -320,7 +320,7 @@ void BOPDS_Iterator::Intersect() aTi = aSI.ShapeType(); iTi = BOPDS_Tools::TypeToInteger(aTi); // - BOPCol_ListIteratorOfListOfInteger aIt(aLI); + TColStd_ListIteratorOfListOfInteger aIt(aLI); for (; aIt.More(); aIt.Next()) { j = aIt.Value(); // DS index if (j >= i1 && j <= i2) { diff --git a/src/BOPDS/BOPDS_Iterator.hxx b/src/BOPDS/BOPDS_Iterator.hxx index 9e3313092b..d6c35873f1 100644 --- a/src/BOPDS/BOPDS_Iterator.hxx +++ b/src/BOPDS/BOPDS_Iterator.hxx @@ -22,11 +22,11 @@ #include #include -#include #include #include #include #include +#include #include #include class BOPDS_DS; @@ -51,7 +51,7 @@ public: //! Contructor //! theAllocator - the allocator to manage the memory - Standard_EXPORT BOPDS_Iterator(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPDS_Iterator(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier //! Sets the data structure to process @@ -101,7 +101,7 @@ protected: Standard_EXPORT virtual void Intersect(); - BOPCol_BaseAllocator myAllocator; + Handle(NCollection_BaseAllocator) myAllocator; Standard_Integer myLength; BOPDS_PDS myDS; BOPDS_VectorOfVectorOfPair myLists; diff --git a/src/BOPDS/BOPDS_IteratorSI.cxx b/src/BOPDS/BOPDS_IteratorSI.cxx index 2feaa9b761..0018bb2833 100644 --- a/src/BOPDS/BOPDS_IteratorSI.cxx +++ b/src/BOPDS/BOPDS_IteratorSI.cxx @@ -13,12 +13,6 @@ // commercial license or contractual agreement. #include -#include -#include -#include -#include -#include -#include #include #include #include @@ -26,13 +20,18 @@ #include #include #include +#include #include #include #include #include +#include +#include +#include #include #include #include +#include // //======================================================================= @@ -84,8 +83,8 @@ void BOPDS_IteratorSI::Intersect() Standard_Integer iTi, iTj; TopAbs_ShapeEnum aTi, aTj; // - BOPCol_BoxBndTreeSelector aSelector; - BOPCol_BoxBndTree aBBTree; + BOPTools_BoxBndTreeSelector aSelector; + BOPTools_BoxBndTree aBBTree; NCollection_UBTreeFiller aTreeFiller(aBBTree); // aNbS = myDS->NbSourceShapes(); @@ -122,8 +121,8 @@ void BOPDS_IteratorSI::Intersect() aTi = aSI.ShapeType(); iTi = BOPDS_Tools::TypeToInteger(aTi); // - const BOPCol_ListOfInteger& aLI = aSelector.Indices(); - BOPCol_ListIteratorOfListOfInteger aIt(aLI); + const TColStd_ListOfInteger& aLI = aSelector.Indices(); + TColStd_ListIteratorOfListOfInteger aIt(aLI); for (; aIt.More(); aIt.Next()) { j = aIt.Value(); const BOPDS_ShapeInfo& aSJ = myDS->ShapeInfo(j); diff --git a/src/BOPDS/BOPDS_IteratorSI.hxx b/src/BOPDS/BOPDS_IteratorSI.hxx index a0d9b9ab45..2c3e1a2631 100644 --- a/src/BOPDS/BOPDS_IteratorSI.hxx +++ b/src/BOPDS/BOPDS_IteratorSI.hxx @@ -23,7 +23,7 @@ #include #include -#include +#include #include @@ -49,7 +49,7 @@ Standard_EXPORT virtual ~BOPDS_IteratorSI(); //! Contructor //! theAllocator - the allocator to manage the memory - Standard_EXPORT BOPDS_IteratorSI(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPDS_IteratorSI(const Handle(NCollection_BaseAllocator)& theAllocator); //! Updates the lists of possible intersections //! according to the value of . diff --git a/src/BOPDS/BOPDS_ListIteratorOfListOfPassKeyBoolean.hxx b/src/BOPDS/BOPDS_ListIteratorOfListOfPassKeyBoolean.hxx deleted file mode 100644 index 6a5e9f70a2..0000000000 --- a/src/BOPDS/BOPDS_ListIteratorOfListOfPassKeyBoolean.hxx +++ /dev/null @@ -1,20 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPDS_ListIteratorOfListOfPassKeyBoolean_HeaderFile -#define BOPDS_ListIteratorOfListOfPassKeyBoolean_HeaderFile - -#include - -#endif diff --git a/src/BOPDS/BOPDS_ListOfPassKeyBoolean.hxx b/src/BOPDS/BOPDS_ListOfPassKeyBoolean.hxx deleted file mode 100644 index 9e82c3cadc..0000000000 --- a/src/BOPDS/BOPDS_ListOfPassKeyBoolean.hxx +++ /dev/null @@ -1,24 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPDS_ListOfPassKeyBoolean_HeaderFile -#define BOPDS_ListOfPassKeyBoolean_HeaderFile - -#include -#include - -typedef NCollection_List BOPDS_ListOfPassKeyBoolean; -typedef BOPDS_ListOfPassKeyBoolean::Iterator BOPDS_ListIteratorOfListOfPassKeyBoolean; - -#endif diff --git a/src/BOPDS/BOPDS_MapOfPassKey.hxx b/src/BOPDS/BOPDS_MapOfPassKey.hxx deleted file mode 100644 index 39fcb0a716..0000000000 --- a/src/BOPDS/BOPDS_MapOfPassKey.hxx +++ /dev/null @@ -1,26 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPDS_MapOfPassKey_HeaderFile -#define BOPDS_MapOfPassKey_HeaderFile - -#include -#include -#include - - -typedef NCollection_Map BOPDS_MapOfPassKey; -typedef BOPDS_MapOfPassKey::Iterator BOPDS_MapIteratorMapOfPassKey; - -#endif diff --git a/src/BOPDS/BOPDS_MapOfPassKeyBoolean.hxx b/src/BOPDS/BOPDS_MapOfPassKeyBoolean.hxx deleted file mode 100644 index 1cfe9dd8f3..0000000000 --- a/src/BOPDS/BOPDS_MapOfPassKeyBoolean.hxx +++ /dev/null @@ -1,25 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPDS_MapOfPassKeyBoolean_HeaderFile -#define BOPDS_MapOfPassKeyBoolean_HeaderFile - -#include -#include -#include - -typedef NCollection_Map BOPDS_MapOfPassKeyBoolean; -typedef BOPDS_MapOfPassKeyBoolean::Iterator BOPDS_MapIteratorMapOfPassKeyBoolean; - -#endif diff --git a/src/BOPDS/BOPDS_PassKey.cxx b/src/BOPDS/BOPDS_PassKey.cxx deleted file mode 100644 index 1c94667526..0000000000 --- a/src/BOPDS/BOPDS_PassKey.cxx +++ /dev/null @@ -1,29 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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 : Dump -//purpose : -//======================================================================= - void BOPDS_PassKey::Dump(const Standard_Integer )const -{ -} diff --git a/src/BOPDS/BOPDS_PassKey.hxx b/src/BOPDS/BOPDS_PassKey.hxx deleted file mode 100644 index 042d2fb94b..0000000000 --- a/src/BOPDS/BOPDS_PassKey.hxx +++ /dev/null @@ -1,144 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. - -#ifndef _BOPDS_PassKey_HeaderFile -#define _BOPDS_PassKey_HeaderFile - -#include -#include -#include - -#include -#include -#include -#include -#include - - - -//! The class BOPDS_PassKey is to provide -//! possibility to map objects that -//! have a set of integer IDs as a base -class BOPDS_PassKey -{ -public: - - DEFINE_STANDARD_ALLOC - - - - //! Empty contructor - BOPDS_PassKey(); -virtual ~BOPDS_PassKey(); - - - //! Contructor - //! theAllocator - the allocator to manage the memory - BOPDS_PassKey(const BOPCol_BaseAllocator& theAllocator); - - - //! Copy Contructor - BOPDS_PassKey(const BOPDS_PassKey& Other); -BOPDS_PassKey& operator =(const BOPDS_PassKey& Other); - - - //! Clear the contents - void Clear(); - - - //! Modifier - //! Sets one Id - void SetIds (const Standard_Integer theI1); - - - //! Modifier - //! Sets two Id , - void SetIds (const Standard_Integer theI1, const Standard_Integer theI2); - - - //! Modifier - //! Sets three Id ,, - void SetIds (const Standard_Integer theI1, const Standard_Integer theI2, const Standard_Integer theI3); - - - //! Modifier - //! Sets four Id ,,, - void SetIds (const Standard_Integer theI1, const Standard_Integer theI2, const Standard_Integer theI3, const Standard_Integer theI4); - - - //! Modifier - //! Sets the list of Id - Standard_EXPORT void SetIds (const BOPCol_ListOfInteger& theLI); - - - //! Selector - //! Returns the number of Ids> - Standard_Integer NbIds() const; - - - //! Query - //! Returns true if the PassKey is equal to - Standard_Boolean IsEqual (const BOPDS_PassKey& theOther) const; - - - //! Query - //! Returns hash code - Standard_Integer HashCode (const Standard_Integer theUpper) const; - - - //! Selector - //! Returns Id of index - Standard_Integer Id (const Standard_Integer theIndex) const; - - - //! Selector - //! Returns the first two Ids , - void Ids (Standard_Integer& theI1, Standard_Integer& theI2) const; - - Standard_EXPORT void Dump (const Standard_Integer aHex = 0) const; - - - - -protected: - - - BOPCol_PInteger Allocate (const Standard_Integer theSize); - - - BOPCol_BaseAllocator myAllocator; - Standard_Integer myNbIds; - Standard_Integer mySum; - BOPCol_PInteger myPtr; - - -private: - - - - - -}; - - -#include - - - - - -#endif // _BOPDS_PassKey_HeaderFile diff --git a/src/BOPDS/BOPDS_PassKey.lxx b/src/BOPDS/BOPDS_PassKey.lxx deleted file mode 100644 index cffef3ba1e..0000000000 --- a/src/BOPDS/BOPDS_PassKey.lxx +++ /dev/null @@ -1,332 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. - -static - inline Standard_Integer NormalizedId(const Standard_Integer aId, - const Standard_Integer aDiv); -static - inline void SortShell(const Standard_Integer n, - Standard_Integer* a); - -//======================================================================= -//function : -//purpose : -//======================================================================= - inline BOPDS_PassKey::BOPDS_PassKey() -{ - myAllocator=NCollection_BaseAllocator::CommonBaseAllocator(); - myPtr=NULL; - Clear(); -} -//======================================================================= -//function : -//purpose : -//======================================================================= - inline BOPDS_PassKey::BOPDS_PassKey(const Handle(NCollection_BaseAllocator)& theAllocator) -{ - myAllocator=theAllocator; - myPtr=NULL; - Clear(); -} -//======================================================================= -//function : -//purpose : -//======================================================================= - inline BOPDS_PassKey::BOPDS_PassKey(const BOPDS_PassKey& theOther) -: - myPtr(0) -{ - (*this) = theOther; -} -//======================================================================= -//function :operator = -//purpose : -//======================================================================= - inline BOPDS_PassKey& BOPDS_PassKey::operator =(const BOPDS_PassKey& aOther) -{ - Clear(); - // - myAllocator=aOther.myAllocator; - myNbIds=aOther.myNbIds; - mySum=aOther.mySum; - // - if (myNbIds) { - myPtr=Allocate(myNbIds); - for (int i=0; iAllocate(theSize*sizeof(Standard_Integer)); - return pPtr; -} - -//======================================================================= -//function :Clear -//purpose : -//======================================================================= - inline void BOPDS_PassKey::Clear() -{ - myNbIds=0; - mySum=0; - if (myPtr) { - myAllocator->Free(myPtr); - myPtr=NULL; - } -} -//======================================================================= -//function :SetIds -//purpose : -//======================================================================= - inline void BOPDS_PassKey::SetIds(const Standard_Integer aId1) -{ - Clear(); - myNbIds=1; - myPtr=Allocate(myNbIds); - myPtr[0]=aId1; - mySum=NormalizedId(aId1, myNbIds); -} - -//======================================================================= -//function :SetIds -//purpose : -//======================================================================= - inline void BOPDS_PassKey::SetIds(const Standard_Integer aId1, - const Standard_Integer aId2) -{ - Clear(); - // - myNbIds=2; - myPtr=Allocate(myNbIds); - // - if (aId1myNbIds-1) { - return -1; - } - return myPtr[aIndex]; -} -//======================================================================= -//function :Ids -//purpose : -//======================================================================= - inline void BOPDS_PassKey::Ids(Standard_Integer& aId1, - Standard_Integer& aId2) const -{ - aId1=0; - aId2=0; - if (myNbIds>1) { - aId1=myPtr[0]; - aId2=myPtr[1]; - } -} -//======================================================================= -//function :IsEqual -//purpose : -//======================================================================= - inline Standard_Boolean BOPDS_PassKey::IsEqual(const BOPDS_PassKey& aOther) const -{ - Standard_Boolean bRet; - Standard_Integer i; - // - bRet=Standard_False; - // - if (myNbIds!=aOther.myNbIds) { - return bRet; - } - for (i=0; iaTresh) { - aIdRet=aId%aTresh; - } - return aIdRet; -} -//======================================================================= -// function: SortShell -// purpose : -//======================================================================= -inline void SortShell(const Standard_Integer n, - Standard_Integer* a) -{ - Standard_Integer nd, i, j, l, d=1; - Standard_Integer x; - // - while(d<=n) { - d*=2; - } - // - while (d) { - d=(d-1)/2; - // - nd=n-d; - for (i=0; i -1) { - goto m30; - } - }//if (a[l] < a[j]){ - }//for (i=0; i -#include -#include - -#include -#include -#include - - - -class BOPDS_PassKeyBoolean : public BOPDS_PassKey -{ -public: - - DEFINE_STANDARD_ALLOC - - - BOPDS_PassKeyBoolean(); -virtual ~BOPDS_PassKeyBoolean(); - - BOPDS_PassKeyBoolean(const BOPCol_BaseAllocator& theAllocator); - - BOPDS_PassKeyBoolean(const BOPDS_PassKeyBoolean& Other); - - void SetFlag (const Standard_Boolean theFlag); -BOPDS_PassKeyBoolean& operator =(const BOPDS_PassKeyBoolean& ); - - Standard_Boolean Flag() const; - - - - -protected: - - - - Standard_Boolean myFlag; - - -private: - - - - - -}; - - -#include - - - - - -#endif // _BOPDS_PassKeyBoolean_HeaderFile diff --git a/src/BOPDS/BOPDS_PassKeyBoolean.lxx b/src/BOPDS/BOPDS_PassKeyBoolean.lxx deleted file mode 100644 index abeb0c690a..0000000000 --- a/src/BOPDS/BOPDS_PassKeyBoolean.lxx +++ /dev/null @@ -1,81 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. - -//======================================================================= -//function : -//purpose : -//======================================================================= - inline BOPDS_PassKeyBoolean::BOPDS_PassKeyBoolean() -: - BOPDS_PassKey(), - myFlag(Standard_False) -{ -} -//======================================================================= -//function : -//purpose : -//======================================================================= - inline BOPDS_PassKeyBoolean::BOPDS_PassKeyBoolean - (const Handle(NCollection_BaseAllocator)& theAllocator) -: - BOPDS_PassKey(theAllocator), - myFlag(Standard_False) -{ -} -//======================================================================= -//function : -//purpose : -//======================================================================= - inline BOPDS_PassKeyBoolean::BOPDS_PassKeyBoolean(const BOPDS_PassKeyBoolean& theOther) -: - BOPDS_PassKey(theOther) -{ - myFlag = theOther.myFlag; -} -//======================================================================= -//function :~ -//purpose : -//======================================================================= - inline BOPDS_PassKeyBoolean::~BOPDS_PassKeyBoolean() -{ -} -//======================================================================= -//function :operator = -//purpose : -//======================================================================= - inline BOPDS_PassKeyBoolean& BOPDS_PassKeyBoolean::operator =(const BOPDS_PassKeyBoolean& aOther) -{ - BOPDS_PassKey::operator =(aOther); - myFlag=aOther.myFlag; - return *this; -} -//======================================================================= -//function :SetFlag -//purpose : -//======================================================================= - inline void BOPDS_PassKeyBoolean::SetFlag(const Standard_Boolean aFlag) -{ - myFlag=aFlag; -} -//======================================================================= -//function :Flag -//purpose : -//======================================================================= - inline Standard_Boolean BOPDS_PassKeyBoolean::Flag()const -{ - return myFlag; -} diff --git a/src/BOPDS/BOPDS_PassKeyMapHasher.hxx b/src/BOPDS/BOPDS_PassKeyMapHasher.hxx deleted file mode 100644 index 83bdef29f3..0000000000 --- a/src/BOPDS/BOPDS_PassKeyMapHasher.hxx +++ /dev/null @@ -1,66 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. - -#ifndef _BOPDS_PassKeyMapHasher_HeaderFile -#define _BOPDS_PassKeyMapHasher_HeaderFile - -#include -#include -#include - -#include -#include -class BOPDS_PassKey; - - - -class BOPDS_PassKeyMapHasher -{ -public: - - DEFINE_STANDARD_ALLOC - - - static Standard_Integer HashCode (const BOPDS_PassKey& aPKey, const Standard_Integer Upper); - - static Standard_Boolean IsEqual (const BOPDS_PassKey& aPKey1, const BOPDS_PassKey& aPKey2); - - - - -protected: - - - - - -private: - - - - - -}; - - -#include - - - - - -#endif // _BOPDS_PassKeyMapHasher_HeaderFile diff --git a/src/BOPDS/BOPDS_PassKeyMapHasher.lxx b/src/BOPDS/BOPDS_PassKeyMapHasher.lxx deleted file mode 100644 index cb4dc6324c..0000000000 --- a/src/BOPDS/BOPDS_PassKeyMapHasher.lxx +++ /dev/null @@ -1,39 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2010-2014 OPEN CASCADE SAS -// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE -// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, -// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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 - -//======================================================================= -//function : HashCode -//purpose : -//======================================================================= -inline - Standard_Integer BOPDS_PassKeyMapHasher::HashCode(const BOPDS_PassKey& aPK, - const Standard_Integer Upper) -{ - return aPK.HashCode(Upper); -} -//======================================================================= -//function :IsEqual -//purpose : -//======================================================================= -inline - Standard_Boolean BOPDS_PassKeyMapHasher::IsEqual(const BOPDS_PassKey& aPK1, - const BOPDS_PassKey& aPK2) -{ - return aPK1.IsEqual(aPK2); -} diff --git a/src/BOPDS/BOPDS_PaveBlock.hxx b/src/BOPDS/BOPDS_PaveBlock.hxx index 6fecd0d893..0606dbb7af 100644 --- a/src/BOPDS/BOPDS_PaveBlock.hxx +++ b/src/BOPDS/BOPDS_PaveBlock.hxx @@ -18,16 +18,16 @@ #include #include -#include -#include -#include -#include -#include #include -#include -#include -#include +#include #include +#include +#include +#include +#include +#include +#include +#include class BOPDS_Pave; class Bnd_Box; @@ -52,7 +52,7 @@ public: //! Contructor //! - the allocator to manage the memory - Standard_EXPORT BOPDS_PaveBlock(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPDS_PaveBlock(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier @@ -224,7 +224,7 @@ public: protected: - BOPCol_BaseAllocator myAllocator; + Handle(NCollection_BaseAllocator) myAllocator; Standard_Integer myEdge; Standard_Integer myOriginalEdge; BOPDS_Pave myPave1; @@ -233,7 +233,7 @@ protected: Standard_Real myTS1; Standard_Real myTS2; Bnd_Box myShrunkBox; - BOPCol_MapOfInteger myMFence; + TColStd_MapOfInteger myMFence; Standard_Boolean myIsSplittable; private: diff --git a/src/BOPDS/BOPDS_ShapeInfo.cxx b/src/BOPDS/BOPDS_ShapeInfo.cxx index dd6a0c6854..b9ad093be9 100644 --- a/src/BOPDS/BOPDS_ShapeInfo.cxx +++ b/src/BOPDS/BOPDS_ShapeInfo.cxx @@ -14,7 +14,7 @@ #include -#include +#include #include #include @@ -29,7 +29,7 @@ const TopAbs_ShapeEnum aTS = ShapeType(); printf(" %s", TopAbs::ShapeTypeToString (aTS)); printf(" {"); - for (BOPCol_ListIteratorOfListOfInteger aIt(mySubShapes); aIt.More(); aIt.Next()) { + for (TColStd_ListOfInteger::Iterator aIt(mySubShapes); aIt.More(); aIt.Next()) { Standard_Integer n = aIt.Value(); printf(" %d", n); } diff --git a/src/BOPDS/BOPDS_ShapeInfo.hxx b/src/BOPDS/BOPDS_ShapeInfo.hxx index 08d03580e4..a07f059c84 100644 --- a/src/BOPDS/BOPDS_ShapeInfo.hxx +++ b/src/BOPDS/BOPDS_ShapeInfo.hxx @@ -19,16 +19,13 @@ #include #include -#include -#include #include -#include +#include #include -#include #include -class TopoDS_Shape; -class Bnd_Box; - +#include +#include +#include //! The class BOPDS_ShapeInfo is to store @@ -48,7 +45,7 @@ virtual ~BOPDS_ShapeInfo(); //! Contructor //! theAllocator - the allocator to manage the memory - BOPDS_ShapeInfo(const BOPCol_BaseAllocator& theAllocator); + BOPDS_ShapeInfo(const Handle(NCollection_BaseAllocator)& theAllocator); //! Modifier @@ -88,12 +85,12 @@ virtual ~BOPDS_ShapeInfo(); //! Selector //! Returns the list of indices of sub-shapes - const BOPCol_ListOfInteger& SubShapes() const; + const TColStd_ListOfInteger& SubShapes() const; //! Selector/ Modifier //! Returns the list of indices of sub-shapes - BOPCol_ListOfInteger& ChangeSubShapes(); + TColStd_ListOfInteger& ChangeSubShapes(); //! Query @@ -157,7 +154,7 @@ protected: TopoDS_Shape myShape; TopAbs_ShapeEnum myType; Bnd_Box myBox; - BOPCol_ListOfInteger mySubShapes; + TColStd_ListOfInteger mySubShapes; Standard_Integer myReference; Standard_Integer myFlag; diff --git a/src/BOPDS/BOPDS_ShapeInfo.lxx b/src/BOPDS/BOPDS_ShapeInfo.lxx index 79937649b1..f528d35ac1 100644 --- a/src/BOPDS/BOPDS_ShapeInfo.lxx +++ b/src/BOPDS/BOPDS_ShapeInfo.lxx @@ -107,7 +107,7 @@ inline Bnd_Box& BOPDS_ShapeInfo::ChangeBox() //function : SubShapes //purpose : //======================================================================= -inline const BOPCol_ListOfInteger& BOPDS_ShapeInfo::SubShapes()const +inline const TColStd_ListOfInteger& BOPDS_ShapeInfo::SubShapes()const { return mySubShapes; } @@ -115,7 +115,7 @@ inline const BOPCol_ListOfInteger& BOPDS_ShapeInfo::SubShapes()const //function : ChangeSubShapes //purpose : //======================================================================= -inline BOPCol_ListOfInteger& BOPDS_ShapeInfo::ChangeSubShapes() +inline TColStd_ListOfInteger& BOPDS_ShapeInfo::ChangeSubShapes() { return mySubShapes; } @@ -127,7 +127,7 @@ inline Standard_Boolean BOPDS_ShapeInfo::HasSubShape (const Standard_Integer theI)const { Standard_Boolean bRet; - BOPCol_ListIteratorOfListOfInteger aIt; + TColStd_ListIteratorOfListOfInteger aIt; // bRet=Standard_False; aIt.Initialize(mySubShapes); diff --git a/src/BOPDS/BOPDS_SubIterator.cxx b/src/BOPDS/BOPDS_SubIterator.cxx index d5039a5c1d..18ec0e5d2e 100644 --- a/src/BOPDS/BOPDS_SubIterator.cxx +++ b/src/BOPDS/BOPDS_SubIterator.cxx @@ -17,12 +17,12 @@ #include -#include - #include #include #include +#include + #include #include @@ -118,10 +118,10 @@ void BOPDS_SubIterator::Initialize() void BOPDS_SubIterator::Intersect() { Standard_Integer i, j, iTi, iTj; - BOPCol_BoxBndTree aBBTree; + BOPTools_BoxBndTree aBBTree; NCollection_UBTreeFiller aTreeFiller(aBBTree); // - BOPCol_ListIteratorOfListOfInteger aIt(*mySubSet1); + TColStd_ListIteratorOfListOfInteger aIt(*mySubSet1); for (; aIt.More(); aIt.Next()) { i = aIt.Value(); // @@ -142,7 +142,7 @@ void BOPDS_SubIterator::Initialize() const BOPDS_ShapeInfo& aSI = myDS->ShapeInfo(i); const Bnd_Box& aBoxEx = aSI.Box(); // - BOPCol_BoxBndTreeSelector aSelector; + BOPTools_BoxBndTreeSelector aSelector; aSelector.SetBox(aBoxEx); Standard_Integer aNbSD = aBBTree.Select(aSelector); if (!aNbSD) { @@ -151,8 +151,8 @@ void BOPDS_SubIterator::Initialize() // iTi = BOPDS_Tools::TypeToInteger(aSI.ShapeType()); // - const BOPCol_ListOfInteger& aLI = aSelector.Indices(); - BOPCol_ListIteratorOfListOfInteger aItLI(aLI); + const TColStd_ListOfInteger& aLI = aSelector.Indices(); + TColStd_ListIteratorOfListOfInteger aItLI(aLI); for (; aItLI.More(); aItLI.Next()) { j = aItLI.Value(); // diff --git a/src/BOPDS/BOPDS_SubIterator.hxx b/src/BOPDS/BOPDS_SubIterator.hxx index 1fb242d77a..cc28965692 100644 --- a/src/BOPDS/BOPDS_SubIterator.hxx +++ b/src/BOPDS/BOPDS_SubIterator.hxx @@ -19,12 +19,11 @@ #include #include -#include #include #include #include -#include -#include +#include +#include #include #include class BOPDS_DS; @@ -47,7 +46,7 @@ public: //! Constructor //! theAllocator - the allocator to manage the memory - Standard_EXPORT BOPDS_SubIterator(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPDS_SubIterator(const Handle(NCollection_BaseAllocator)& theAllocator); //! Sets the data structure to process. //! It is used to access the shapes and their bounding boxes. @@ -63,25 +62,25 @@ public: } //! Sets the first set of indices to process - void SetSubSet1 (const BOPCol_ListOfInteger& theLI) + void SetSubSet1 (const TColStd_ListOfInteger& theLI) { - mySubSet1 = (BOPCol_PListOfInteger)&theLI; + mySubSet1 = (TColStd_ListOfInteger*)&theLI; } //! Returns the first set of indices to process - const BOPCol_ListOfInteger& SubSet1() const + const TColStd_ListOfInteger& SubSet1() const { return *mySubSet1; } //! Sets the second set of indices to process - void SetSubSet2 (const BOPCol_ListOfInteger& theLI) + void SetSubSet2 (const TColStd_ListOfInteger& theLI) { - mySubSet2 = (BOPCol_PListOfInteger)&theLI; + mySubSet2 = (TColStd_ListOfInteger*)&theLI; } //! Returns the second set of indices to process - const BOPCol_ListOfInteger& SubSet2() const + const TColStd_ListOfInteger& SubSet2() const { return *mySubSet2; } @@ -113,7 +112,7 @@ public: //! Returns the number of interfering pairs Standard_Integer ExpectedLength() const { - return myList.Extent(); + return myList.Length(); } protected: @@ -121,12 +120,12 @@ protected: //! Performs intersection of bounding boxes Standard_EXPORT virtual void Intersect(); - BOPCol_BaseAllocator myAllocator; + Handle(NCollection_BaseAllocator) myAllocator; BOPDS_PDS myDS; BOPDS_VectorOfPair myList; BOPDS_VectorOfPair::Iterator myIterator; - BOPCol_PListOfInteger mySubSet1; - BOPCol_PListOfInteger mySubSet2; + TColStd_ListOfInteger* mySubSet1; + TColStd_ListOfInteger* mySubSet2; private: diff --git a/src/BOPDS/BOPDS_VectorOfCurve.hxx b/src/BOPDS/BOPDS_VectorOfCurve.hxx index 3364b0865a..89260c61b1 100644 --- a/src/BOPDS/BOPDS_VectorOfCurve.hxx +++ b/src/BOPDS/BOPDS_VectorOfCurve.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfCurve_HeaderFile #define BOPDS_VectorOfCurve_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfCurve; +typedef NCollection_Vector BOPDS_VectorOfCurve; #endif diff --git a/src/BOPDS/BOPDS_VectorOfFaceInfo.hxx b/src/BOPDS/BOPDS_VectorOfFaceInfo.hxx index a7f49dd500..a4ea381c71 100644 --- a/src/BOPDS/BOPDS_VectorOfFaceInfo.hxx +++ b/src/BOPDS/BOPDS_VectorOfFaceInfo.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfFaceInfo_HeaderFile #define BOPDS_VectorOfFaceInfo_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfFaceInfo; +typedef NCollection_Vector BOPDS_VectorOfFaceInfo; #endif diff --git a/src/BOPDS/BOPDS_VectorOfIndexRange.hxx b/src/BOPDS/BOPDS_VectorOfIndexRange.hxx index 4dcfc40063..63466323a4 100644 --- a/src/BOPDS/BOPDS_VectorOfIndexRange.hxx +++ b/src/BOPDS/BOPDS_VectorOfIndexRange.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfIndexRange_HeaderFile #define BOPDS_VectorOfIndexRange_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfIndexRange; +typedef NCollection_Vector BOPDS_VectorOfIndexRange; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfEE.hxx b/src/BOPDS/BOPDS_VectorOfInterfEE.hxx index 16237b7820..3b1342c9ea 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfEE.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfEE.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfInterfEE_HeaderFile #define BOPDS_VectorOfInterfEE_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfEE; +typedef NCollection_Vector BOPDS_VectorOfInterfEE; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfEF.hxx b/src/BOPDS/BOPDS_VectorOfInterfEF.hxx index 103d289971..e01711c3a4 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfEF.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfEF.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfInterfEF_HeaderFile #define BOPDS_VectorOfInterfEF_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfEF; +typedef NCollection_Vector BOPDS_VectorOfInterfEF; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfEZ.hxx b/src/BOPDS/BOPDS_VectorOfInterfEZ.hxx index e1dbfa2fa1..3c672dbc7d 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfEZ.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfEZ.hxx @@ -16,9 +16,9 @@ #ifndef BOPDS_VectorOfInterfEZ_HeaderFile #define BOPDS_VectorOfInterfEZ_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfEZ; +typedef NCollection_Vector BOPDS_VectorOfInterfEZ; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfFF.hxx b/src/BOPDS/BOPDS_VectorOfInterfFF.hxx index 2b49fb3c2c..5ea393f198 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfFF.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfFF.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfInterfFF_HeaderFile #define BOPDS_VectorOfInterfFF_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfFF; +typedef NCollection_Vector BOPDS_VectorOfInterfFF; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfFZ.hxx b/src/BOPDS/BOPDS_VectorOfInterfFZ.hxx index cf2e470d7f..8c27598863 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfFZ.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfFZ.hxx @@ -16,9 +16,9 @@ #ifndef BOPDS_VectorOfInterfFZ_HeaderFile #define BOPDS_VectorOfInterfFZ_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfFZ; +typedef NCollection_Vector BOPDS_VectorOfInterfFZ; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfVE.hxx b/src/BOPDS/BOPDS_VectorOfInterfVE.hxx index fe2a890d10..e676ba94ef 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfVE.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfVE.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfInterfVE_HeaderFile #define BOPDS_VectorOfInterfVE_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfVE; +typedef NCollection_Vector BOPDS_VectorOfInterfVE; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfVF.hxx b/src/BOPDS/BOPDS_VectorOfInterfVF.hxx index 91545078ae..56e20c9415 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfVF.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfVF.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfInterfVF_HeaderFile #define BOPDS_VectorOfInterfVF_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfVF; +typedef NCollection_Vector BOPDS_VectorOfInterfVF; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfVV.hxx b/src/BOPDS/BOPDS_VectorOfInterfVV.hxx index 772ae84670..4ce09846fc 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfVV.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfVV.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfInterfVV_HeaderFile #define BOPDS_VectorOfInterfVV_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfVV; +typedef NCollection_Vector BOPDS_VectorOfInterfVV; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfVZ.hxx b/src/BOPDS/BOPDS_VectorOfInterfVZ.hxx index f2f3dad6b6..c554d98477 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfVZ.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfVZ.hxx @@ -16,9 +16,9 @@ #ifndef BOPDS_VectorOfInterfVZ_HeaderFile #define BOPDS_VectorOfInterfVZ_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfVZ; +typedef NCollection_Vector BOPDS_VectorOfInterfVZ; #endif diff --git a/src/BOPDS/BOPDS_VectorOfInterfZZ.hxx b/src/BOPDS/BOPDS_VectorOfInterfZZ.hxx index 82928b1776..6497cff1f7 100644 --- a/src/BOPDS/BOPDS_VectorOfInterfZZ.hxx +++ b/src/BOPDS/BOPDS_VectorOfInterfZZ.hxx @@ -16,9 +16,9 @@ #ifndef BOPDS_VectorOfInterfZZ_HeaderFile #define BOPDS_VectorOfInterfZZ_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfInterfZZ; +typedef NCollection_Vector BOPDS_VectorOfInterfZZ; #endif diff --git a/src/BOPDS/BOPDS_VectorOfListOfPassKeyBoolean.hxx b/src/BOPDS/BOPDS_VectorOfListOfPassKeyBoolean.hxx deleted file mode 100644 index e2644e1cf6..0000000000 --- a/src/BOPDS/BOPDS_VectorOfListOfPassKeyBoolean.hxx +++ /dev/null @@ -1,23 +0,0 @@ -// Created by: Peter KURNEV -// 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. - -#ifndef BOPDS_VectorOfListOfPassKeyBoolean_HeaderFile -#define BOPDS_VectorOfListOfPassKeyBoolean_HeaderFile - -#include -#include - -typedef BOPCol_NCVector BOPDS_VectorOfListOfPassKeyBoolean; - -#endif diff --git a/src/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx b/src/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx index 39389a6968..b21b3620f7 100644 --- a/src/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx +++ b/src/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx @@ -15,10 +15,10 @@ #ifndef BOPDS_VectorOfListOfPaveBlock_HeaderFile #define BOPDS_VectorOfListOfPaveBlock_HeaderFile -#include +#include #include #include -typedef BOPCol_NCVector BOPDS_VectorOfListOfPaveBlock; +typedef NCollection_Vector BOPDS_VectorOfListOfPaveBlock; #endif diff --git a/src/BOPDS/BOPDS_VectorOfPair.hxx b/src/BOPDS/BOPDS_VectorOfPair.hxx index 5609f4928f..0b5b648be9 100644 --- a/src/BOPDS/BOPDS_VectorOfPair.hxx +++ b/src/BOPDS/BOPDS_VectorOfPair.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfPair_HeaderFile #define BOPDS_VectorOfPair_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfPair; +typedef NCollection_Vector BOPDS_VectorOfPair; #endif diff --git a/src/BOPDS/BOPDS_VectorOfPoint.hxx b/src/BOPDS/BOPDS_VectorOfPoint.hxx index 2bbe1f3ddd..d684935f47 100644 --- a/src/BOPDS/BOPDS_VectorOfPoint.hxx +++ b/src/BOPDS/BOPDS_VectorOfPoint.hxx @@ -15,10 +15,10 @@ #ifndef BOPDS_VectorOfPnt_HeaderFile #define BOPDS_VectorOfPnt_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfPoint; +typedef NCollection_Vector BOPDS_VectorOfPoint; #endif diff --git a/src/BOPDS/BOPDS_VectorOfShapeInfo.hxx b/src/BOPDS/BOPDS_VectorOfShapeInfo.hxx index 236a14d75b..675460cf65 100644 --- a/src/BOPDS/BOPDS_VectorOfShapeInfo.hxx +++ b/src/BOPDS/BOPDS_VectorOfShapeInfo.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfShapeInfo_HeaderFile #define BOPDS_VectorOfShapeInfo_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfShapeInfo; +typedef NCollection_Vector BOPDS_VectorOfShapeInfo; #endif diff --git a/src/BOPDS/BOPDS_VectorOfVectorOfPair.hxx b/src/BOPDS/BOPDS_VectorOfVectorOfPair.hxx index f50fa0aa39..38e68e24a0 100644 --- a/src/BOPDS/BOPDS_VectorOfVectorOfPair.hxx +++ b/src/BOPDS/BOPDS_VectorOfVectorOfPair.hxx @@ -15,9 +15,9 @@ #ifndef BOPDS_VectorOfVectorOfPair_HeaderFile #define BOPDS_VectorOfVectorOfPair_HeaderFile -#include +#include #include -typedef BOPCol_NCVector BOPDS_VectorOfVectorOfPair; +typedef NCollection_Vector BOPDS_VectorOfVectorOfPair; #endif diff --git a/src/BOPDS/FILES b/src/BOPDS/FILES index 01380eb0c3..d66100a521 100644 --- a/src/BOPDS/FILES +++ b/src/BOPDS/FILES @@ -4,7 +4,6 @@ BOPDS_CoupleOfPaveBlocks.hxx BOPDS_Curve.hxx BOPDS_Curve.lxx BOPDS_DataMapOfIntegerListOfPaveBlock.hxx -BOPDS_DataMapOfPassKeyListOfPaveBlock.hxx BOPDS_DataMapOfPaveBlockCommonBlock.hxx BOPDS_DataMapOfPaveBlockListOfInteger.hxx BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx @@ -26,22 +25,11 @@ BOPDS_Iterator.cxx BOPDS_Iterator.hxx BOPDS_IteratorSI.cxx BOPDS_IteratorSI.hxx -BOPDS_ListIteratorOfListOfPassKeyBoolean.hxx -BOPDS_ListOfPassKeyBoolean.hxx BOPDS_ListOfPave.hxx BOPDS_ListOfPaveBlock.hxx BOPDS_MapOfCommonBlock.hxx -BOPDS_MapOfPassKey.hxx -BOPDS_MapOfPassKeyBoolean.hxx BOPDS_MapOfPave.hxx BOPDS_MapOfPaveBlock.hxx -BOPDS_PassKey.cxx -BOPDS_PassKey.hxx -BOPDS_PassKey.lxx -BOPDS_PassKeyBoolean.hxx -BOPDS_PassKeyBoolean.lxx -BOPDS_PassKeyMapHasher.hxx -BOPDS_PassKeyMapHasher.lxx BOPDS_Pave.cxx BOPDS_Pave.hxx BOPDS_Pave.lxx @@ -74,7 +62,6 @@ BOPDS_VectorOfInterfVF.hxx BOPDS_VectorOfInterfVV.hxx BOPDS_VectorOfInterfVZ.hxx BOPDS_VectorOfInterfZZ.hxx -BOPDS_VectorOfListOfPassKeyBoolean.hxx BOPDS_VectorOfListOfPaveBlock.hxx BOPDS_VectorOfPave.hxx BOPDS_VectorOfPoint.hxx diff --git a/src/BOPTest/BOPTest_APICommands.cxx b/src/BOPTest/BOPTest_APICommands.cxx index 4096800bdf..a15aaf119c 100644 --- a/src/BOPTest/BOPTest_APICommands.cxx +++ b/src/BOPTest/BOPTest_APICommands.cxx @@ -14,7 +14,6 @@ #include -#include #include #include #include @@ -31,9 +30,6 @@ #include #include -static - void ConvertList(const BOPCol_ListOfShape& aLSB, - TopTools_ListOfShape& aLS); static Standard_Integer bapibuild(Draw_Interpretor&, Standard_Integer, const char**); static Standard_Integer bapibop (Draw_Interpretor&, Standard_Integer, const char**); @@ -108,12 +104,8 @@ Standard_Integer bapibop(Draw_Interpretor& di, break; } // - BOPCol_ListOfShape& aLSB=BOPTest_Objects::Shapes(); - BOPCol_ListOfShape& aLTB=BOPTest_Objects::Tools(); - // - TopTools_ListOfShape aLS, aLT; - ConvertList(aLSB, aLS); - ConvertList(aLTB, aLT); + TopTools_ListOfShape& aLS=BOPTest_Objects::Shapes(); + TopTools_ListOfShape& aLT=BOPTest_Objects::Tools(); // bRunParallel=BOPTest_Objects::RunParallel(); aFuzzyValue=BOPTest_Objects::FuzzyValue(); @@ -177,13 +169,10 @@ Standard_Integer bapibuild(Draw_Interpretor& di, Standard_Real aFuzzyValue; BRepAlgoAPI_BuilderAlgo aBuilder; // - BOPCol_ListOfShape& aLSB=BOPTest_Objects::Shapes(); - BOPCol_ListOfShape& aLTB=BOPTest_Objects::Tools(); - // - TopTools_ListOfShape aLS; - ConvertList(aLSB, aLS); - ConvertList(aLTB, aLS); + TopTools_ListOfShape aLS = BOPTest_Objects::Shapes(); + TopTools_ListOfShape aLT = BOPTest_Objects::Tools(); // + aLS.Append(aLT); bRunParallel=BOPTest_Objects::RunParallel(); aFuzzyValue=BOPTest_Objects::FuzzyValue(); bNonDestructive = BOPTest_Objects::NonDestructive(); @@ -221,21 +210,6 @@ Standard_Integer bapibuild(Draw_Interpretor& di, DBRep::Set(a[1], aR); return 0; } -//======================================================================= -//function : ConvertLists -//purpose : -//======================================================================= -void ConvertList(const BOPCol_ListOfShape& aLSB, - TopTools_ListOfShape& aLS) -{ - BOPCol_ListIteratorOfListOfShape aItB; - // - aItB.Initialize(aLSB); - for (; aItB.More(); aItB.Next()) { - const TopoDS_Shape& aS=aItB.Value(); - aLS.Append(aS); - } -} //======================================================================= //function : bapisplit diff --git a/src/BOPTest/BOPTest_BOPCommands.cxx b/src/BOPTest/BOPTest_BOPCommands.cxx index 427f052cab..873ecdeb07 100644 --- a/src/BOPTest/BOPTest_BOPCommands.cxx +++ b/src/BOPTest/BOPTest_BOPCommands.cxx @@ -19,7 +19,6 @@ #include #include #include -#include #include #include #include @@ -42,6 +41,7 @@ #include #include #include +#include #include // @@ -122,7 +122,7 @@ Standard_Integer bop(Draw_Interpretor& di, Standard_Boolean bRunParallel, bNonDestructive; Standard_Real aTol; TopoDS_Shape aS1, aS2; - BOPCol_ListOfShape aLC; + TopTools_ListOfShape aLC; // if (n != 3) { di << " use bop s1 s2 \n"; @@ -233,7 +233,7 @@ Standard_Integer bopsmt(Draw_Interpretor& di, Standard_Integer aNb; BOPAlgo_BOP aBOP; // - const BOPCol_ListOfShape& aLC=pPF->Arguments(); + const TopTools_ListOfShape& aLC=pPF->Arguments(); aNb=aLC.Extent(); if (aNb!=2) { Sprintf (buf, " wrong number of arguments %s\n", aNb); @@ -295,7 +295,7 @@ Standard_Integer bopsection(Draw_Interpretor& di, Standard_Integer aNb; BOPAlgo_Section aBOP; // - const BOPCol_ListOfShape& aLC=pPF->Arguments(); + const TopTools_ListOfShape& aLC=pPF->Arguments(); aNb=aLC.Extent(); if (aNb!=2) { Sprintf (buf, " wrong number of arguments %s\n", aNb); @@ -462,7 +462,7 @@ Standard_Integer bsmt (Draw_Interpretor& di, { Standard_Boolean bRunParallel, bNonDestructive; TopoDS_Shape aS1, aS2; - BOPCol_ListOfShape aLC; + TopTools_ListOfShape aLC; Standard_Real aTol; // if (n != 4) { @@ -756,7 +756,7 @@ Standard_Integer mkvolume(Draw_Interpretor& di, Standard_Integer n, const char** Standard_Integer i; Standard_Real aTol; TopoDS_Shape aS; - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; // aTol = BOPTest_Objects::FuzzyValue(); bRunParallel = BOPTest_Objects::RunParallel(); @@ -793,8 +793,8 @@ Standard_Integer mkvolume(Draw_Interpretor& di, Standard_Integer n, const char** // // treat list of arguments for the case of compounds if (bToIntersect && bCompounds) { - BOPCol_ListOfShape aLSx; - BOPCol_ListIteratorOfListOfShape aItLS; + TopTools_ListOfShape aLSx; + TopTools_ListIteratorOfListOfShape aItLS; // aItLS.Initialize(aLS); for (; aItLS.More(); aItLS.Next()) { diff --git a/src/BOPTest/BOPTest_CellsCommands.cxx b/src/BOPTest/BOPTest_CellsCommands.cxx index 0373053146..0876dfc283 100644 --- a/src/BOPTest/BOPTest_CellsCommands.cxx +++ b/src/BOPTest/BOPTest_CellsCommands.cxx @@ -80,21 +80,21 @@ Standard_Integer bcbuild(Draw_Interpretor& di, return 1; } // - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // BOPAlgo_PaveFiller& aPF = BOPTest_Objects::PaveFiller(); // BOPAlgo_CellsBuilder& aCBuilder = BOPTest_Objects::CellsBuilder(); aCBuilder.Clear(); // - BOPCol_ListOfShape& aLSObj = BOPTest_Objects::Shapes(); + TopTools_ListOfShape& aLSObj = BOPTest_Objects::Shapes(); aIt.Initialize(aLSObj); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); aCBuilder.AddArgument(aS); } // - BOPCol_ListOfShape& aLSTool = BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLSTool = BOPTest_Objects::Tools(); aIt.Initialize(aLSTool); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS = aIt.Value(); @@ -202,7 +202,7 @@ Standard_Integer bcadd(Draw_Interpretor& di, return 1; } // - BOPCol_ListOfShape aLSToTake, aLSToAvoid; + TopTools_ListOfShape aLSToTake, aLSToAvoid; Standard_Integer i, iMaterial, iTake, n1; Standard_Boolean bUpdate; // @@ -266,7 +266,7 @@ Standard_Integer bcremove(Draw_Interpretor& di, return 1; } // - BOPCol_ListOfShape aLSToTake, aLSToAvoid; + TopTools_ListOfShape aLSToTake, aLSToAvoid; Standard_Integer i, iTake; // for (i = 2; i < n; i += 2) { diff --git a/src/BOPTest/BOPTest_CheckCommands.cxx b/src/BOPTest/BOPTest_CheckCommands.cxx index 77d5cd2a44..8e3c1bcbf2 100644 --- a/src/BOPTest/BOPTest_CheckCommands.cxx +++ b/src/BOPTest/BOPTest_CheckCommands.cxx @@ -16,7 +16,6 @@ #include #include #include -#include #include #include #include @@ -31,6 +30,7 @@ #include #include #include +#include #include #include @@ -41,7 +41,7 @@ static void MakeShapeForFullOutput (const TCollection_AsciiString&, const Standard_Integer, - const BOPCol_ListOfShape&, + const TopTools_ListOfShape&, Standard_Integer& , Draw_Interpretor&, Standard_Boolean bCurveOnSurf = Standard_False, @@ -206,7 +206,7 @@ Standard_Integer bopcheck (Draw_Interpretor& di, Standard_Integer iErr, iCnt, n1, n2, iT; TopAbs_ShapeEnum aType1, aType2; BOPAlgo_CheckerSI aChecker; - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; BOPDS_MapIteratorOfMapOfPair aItMPK; // if (aLevel < (aNbInterfTypes-1)) { @@ -581,8 +581,8 @@ Standard_Integer bopargcheck (Draw_Interpretor& di, const BOPAlgo_CheckResult& aResult = anIt.Value(); const TopoDS_Shape & aSS1 = aResult.GetShape1(); const TopoDS_Shape & aSS2 = aResult.GetShape2(); - const BOPCol_ListOfShape & aLS1 = aResult.GetFaultyShapes1(); - const BOPCol_ListOfShape & aLS2 = aResult.GetFaultyShapes2(); + const TopTools_ListOfShape & aLS1 = aResult.GetFaultyShapes1(); + const TopTools_ListOfShape & aLS2 = aResult.GetFaultyShapes2(); Standard_Boolean isL1 = !aLS1.IsEmpty(); Standard_Boolean isL2 = !aLS2.IsEmpty(); @@ -977,7 +977,7 @@ Standard_Integer checkcurveonsurf(Draw_Interpretor& di, TopExp_Explorer aExpF, aExpE; char buf[200], aFName[10], anEName[10]; NCollection_DataMap aDMETol; - BOPCol_DataMapOfShapeInteger aMSI; + TopTools_DataMapOfShapeInteger aMSI; // anECounter = 0; aFCounter = 0; @@ -1077,7 +1077,7 @@ Standard_Integer checkcurveonsurf(Draw_Interpretor& di, //======================================================================= void MakeShapeForFullOutput (const TCollection_AsciiString & aBaseName, const Standard_Integer aIndex, - const BOPCol_ListOfShape & aList, + const TopTools_ListOfShape & aList, Standard_Integer& aCount, Draw_Interpretor& di, Standard_Boolean bCurveOnSurf, @@ -1092,7 +1092,7 @@ void MakeShapeForFullOutput (const TCollection_AsciiString & aBaseName, BRep_Builder BB; BB.MakeCompound(cmp); - BOPCol_ListIteratorOfListOfShape anIt(aList); + TopTools_ListIteratorOfListOfShape anIt(aList); for(; anIt.More(); anIt.Next()) { const TopoDS_Shape & aS = anIt.Value(); BB.Add(cmp, aS); diff --git a/src/BOPTest/BOPTest_DebugCommands.cxx b/src/BOPTest/BOPTest_DebugCommands.cxx index f5b5279e40..66db3f8167 100644 --- a/src/BOPTest/BOPTest_DebugCommands.cxx +++ b/src/BOPTest/BOPTest_DebugCommands.cxx @@ -36,9 +36,9 @@ #include #include -#include -#include -#include +#include +#include +#include static @@ -49,13 +49,13 @@ static char* theName); template static - void DumpInterfs(const BOPCol_NCVector& theVInterf, + void DumpInterfs(const NCollection_Vector& theVInterf, Draw_Interpretor& di); template static void SearchNewIndex(const char* theCType, const Standard_Integer theInd, - const BOPCol_NCVector& theVInterf, + const NCollection_Vector& theVInterf, Draw_Interpretor& di); static Standard_Integer bopfinfo(Draw_Interpretor& di, @@ -426,13 +426,13 @@ Standard_Integer bopwho (Draw_Interpretor& di, // bFound = Standard_False; BOPDS_VectorOfInterfFF& aFFs = pDS->InterfFF(); - aNb = aFFs.Extent(); + aNb = aFFs.Length(); for (i = 0; i < aNb; ++i) { const BOPDS_InterfFF& anInt = aFFs(i); anInt.Indices(n1, n2); // const BOPDS_VectorOfCurve& aVNC = anInt.Curves(); - aNbC = aVNC.Extent(); + aNbC = aVNC.Length(); for (k = 0; k < aNbC; ++k) { const BOPDS_Curve& aNC = aVNC(k); const BOPDS_ListOfPaveBlock& aLPB = aNC.PaveBlocks(); @@ -457,7 +457,7 @@ Standard_Integer bopwho (Draw_Interpretor& di, // bFound = Standard_False; const BOPDS_VectorOfPoint& aVNP = anInt.Points(); - aNbP = aVNP.Extent(); + aNbP = aVNP.Length(); for (k = 0; k < aNbP; ++k) { const BOPDS_Point& aNP = aVNP(k); nV1 = aNP.Index(); @@ -664,7 +664,7 @@ Standard_Integer bopsc(Draw_Interpretor& di, // iCnt = 0; iPriz = 0; - aNb = aFFs.Extent(); + aNb = aFFs.Length(); for (j = 0; j < aNb; ++j) { const BOPDS_InterfFF& aFF = aFFs(j); if (n == 3) { @@ -678,7 +678,7 @@ Standard_Integer bopsc(Draw_Interpretor& di, // iX = 0; const BOPDS_VectorOfCurve& aVNC = aFF.Curves(); - aNbC = aVNC.Extent(); + aNbC = aVNC.Length(); for (k = 0; k < aNbC; ++k) { const BOPDS_Curve& aNC = aVNC(k); const BOPDS_ListOfPaveBlock& aLPB = aNC.PaveBlocks(); @@ -711,7 +711,7 @@ Standard_Integer bopsc(Draw_Interpretor& di, // iX = 0; const BOPDS_VectorOfPoint& aVNP = aFF.Points(); - aNbP = aVNP.Extent(); + aNbP = aVNP.Length(); for (k = 0; k < aNbP; ++k) { const BOPDS_Point& aNP = aVNP(k); nSp = aNP.Index(); @@ -1018,7 +1018,7 @@ Standard_Integer bopfinfo(Draw_Interpretor& di, BOPDS_FaceInfo& aFI = pDS->ChangeFaceInfo(nF); // BOPDS_IndexedMapOfPaveBlock aMPB; - BOPCol_MapOfInteger aMI; + TColStd_MapOfInteger aMI; if (iPriz == 0) { strcpy(aText, "On"); aMPB = aFI.ChangePaveBlocksOn(); @@ -1050,7 +1050,7 @@ Standard_Integer bopfinfo(Draw_Interpretor& di, // if (aMI.Extent()) { printf(" vertices %s:\n", aText); - BOPCol_MapIteratorOfMapOfInteger aItMI(aMI); + TColStd_MapIteratorOfMapOfInteger aItMI(aMI); for (; aItMI.More(); aItMI.Next()) { nV = aItMI.Value(); printf(" %d", nV); @@ -1103,7 +1103,7 @@ Standard_Integer bopfav(Draw_Interpretor& di, return 0; } // - BOPCol_ListOfInteger aLI; + TColStd_ListOfInteger aLI; pDS->AloneVertices(nF, aLI); if (!aLI.Extent()) { di << " no alone vertices found\n"; @@ -1111,7 +1111,7 @@ Standard_Integer bopfav(Draw_Interpretor& di, } // di << " alone vertices: \n"; - BOPCol_ListIteratorOfListOfInteger aItLI(aLI); + TColStd_ListIteratorOfListOfInteger aItLI(aLI); for (; aItLI.More(); aItLI.Next()) { nV = aItLI.Value(); di << nV << " "; @@ -1147,7 +1147,7 @@ Standard_Integer bopimage(Draw_Interpretor& di, } // BOPAlgo_Builder& aBuilder = BOPTest_Objects::Builder(); - const BOPCol_DataMapOfShapeListOfShape& anImages = aBuilder.Images(); + const TopTools_DataMapOfShapeListOfShape& anImages = aBuilder.Images(); if (!anImages.IsBound(aS)) { di << " no images found\n"; return 0; @@ -1160,8 +1160,8 @@ Standard_Integer bopimage(Draw_Interpretor& di, // aBB.MakeCompound(aC); // - const BOPCol_ListOfShape& aLSIm = anImages.Find(aS); - BOPCol_ListIteratorOfListOfShape aIt(aLSIm); + const TopTools_ListOfShape& aLSIm = anImages.Find(aS); + TopTools_ListIteratorOfListOfShape aIt(aLSIm); for (i = 0; aIt.More(); aIt.Next(), ++i) { const TopoDS_Shape& aSIm = aIt.Value(); aBB.Add(aC, aSIm); @@ -1201,7 +1201,7 @@ Standard_Integer boporigin(Draw_Interpretor& di, } // BOPAlgo_Builder& aBuilder = BOPTest_Objects::Builder(); - const BOPCol_DataMapOfShapeListOfShape& aDMI = aBuilder.Origins(); + const TopTools_DataMapOfShapeListOfShape& aDMI = aBuilder.Origins(); if (!aDMI.IsBound(aS)) { di << " no origins found\n"; return 0; @@ -1210,7 +1210,7 @@ Standard_Integer boporigin(Draw_Interpretor& di, char buf[32]; sprintf(buf, "%s_or", a[1]); // - const BOPCol_ListOfShape& aLSx = aDMI.Find(aS); + const TopTools_ListOfShape& aLSx = aDMI.Find(aS); if (aLSx.Extent() == 1) { DBRep::Set(buf, aLSx.First()); di << "1 origin found\n" << buf << "\n"; @@ -1220,7 +1220,7 @@ Standard_Integer boporigin(Draw_Interpretor& di, TopoDS_Compound aCOr; BRep_Builder().MakeCompound(aCOr); // - BOPCol_ListIteratorOfListOfShape aItLSx(aLSx); + TopTools_ListIteratorOfListOfShape aItLSx(aLSx); for (; aItLSx.More(); aItLSx.Next()) { BRep_Builder().Add(aCOr, aItLSx.Value()); } @@ -1259,7 +1259,7 @@ Standard_Integer bopfsd(Draw_Interpretor& di, } // BOPAlgo_Builder& aBuilder = BOPTest_Objects::Builder(); - const BOPCol_DataMapOfShapeShape& aDMSD = aBuilder.ShapesSD(); + const TopTools_DataMapOfShapeShape& aDMSD = aBuilder.ShapesSD(); if (!aDMSD.IsBound(aS)) { di << " shape has no sd shape\n"; return 0; @@ -1272,7 +1272,7 @@ Standard_Integer bopfsd(Draw_Interpretor& di, // aBB.MakeCompound(aC); // - BOPCol_DataMapIteratorOfDataMapOfShapeShape aItSD; + TopTools_DataMapIteratorOfDataMapOfShapeShape aItSD; aItSD.Initialize(aDMSD); for (i = 0; aItSD.More(); aItSD.Next()) { const TopoDS_Shape& aSK = aItSD.Key(); @@ -1321,7 +1321,7 @@ Standard_Integer bopbface (Draw_Interpretor& di, } // TopoDS_Face aF; - BOPCol_ListOfShape aLE; + TopTools_ListOfShape aLE; Standard_Integer i; // TopoDS_Iterator aItS(aS); @@ -1353,8 +1353,8 @@ Standard_Integer bopbface (Draw_Interpretor& di, } // char buf[128]; - const BOPCol_ListOfShape& aLFR = aBF.Areas(); - BOPCol_ListIteratorOfListOfShape aIt(aLFR); + const TopTools_ListOfShape& aLFR = aBF.Areas(); + TopTools_ListIteratorOfListOfShape aIt(aLFR); for (i = 1; aIt.More(); aIt.Next(), ++i) { const TopoDS_Shape& aFR = aIt.Value(); sprintf(buf, "%s_%d", a[1], i); @@ -1392,7 +1392,7 @@ Standard_Integer bopbsolid (Draw_Interpretor& di, return 1; } // - BOPCol_ListOfShape aLF; + TopTools_ListOfShape aLF; TopExp_Explorer aExp(aS, TopAbs_FACE); for (; aExp.More(); aExp.Next()) { const TopoDS_Shape& aF = aExp.Current(); @@ -1419,8 +1419,8 @@ Standard_Integer bopbsolid (Draw_Interpretor& di, aBB.MakeCompound(aSolids); // char buf[128]; - const BOPCol_ListOfShape& aLSR = aBS.Areas(); - BOPCol_ListIteratorOfListOfShape aIt(aLSR); + const TopTools_ListOfShape& aLSR = aBS.Areas(); + TopTools_ListIteratorOfListOfShape aIt(aLSR); for (i = 1; aIt.More(); aIt.Next(), ++i) { const TopoDS_Shape& aSR = aIt.Value(); sprintf(buf, "%s_%d", a[1], i); @@ -1528,13 +1528,13 @@ void GetNameByType(const TopAbs_ShapeEnum& theType, //purpose : //======================================================================= template void DumpInterfs - (const BOPCol_NCVector& theVInterf, + (const NCollection_Vector& theVInterf, Draw_Interpretor& di) { Standard_Integer i, aNb, n1, n2, nNew; char buf[64]; // - aNb = theVInterf.Extent(); + aNb = theVInterf.Length(); if (aNb == 0) { di << "Not found\n"; return; @@ -1562,7 +1562,7 @@ template void DumpInterfs template void SearchNewIndex (const char* theCType, const Standard_Integer theInd, - const BOPCol_NCVector& theVInterf, + const NCollection_Vector& theVInterf, Draw_Interpretor& di) { char buf[64]; @@ -1570,7 +1570,7 @@ template void SearchNewIndex Standard_Integer i, aNb, n1, n2, nNew; // bFound = Standard_False; - aNb = theVInterf.Extent(); + aNb = theVInterf.Length(); for (i = 0 ; i < aNb; ++i) { const InterfType& anInt = theVInterf(i); nNew = anInt.IndexNew(); diff --git a/src/BOPTest/BOPTest_ObjCommands.cxx b/src/BOPTest/BOPTest_ObjCommands.cxx index 9a2e3b903b..2170f7861e 100644 --- a/src/BOPTest/BOPTest_ObjCommands.cxx +++ b/src/BOPTest/BOPTest_ObjCommands.cxx @@ -72,7 +72,7 @@ Standard_Integer baddcompound (Draw_Interpretor& , // aS=DBRep::Get(a[1]); // - BOPCol_ListOfShape& aLS=BOPTest_Objects::Shapes(); + TopTools_ListOfShape& aLS=BOPTest_Objects::Shapes(); aIt.Initialize(aS); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSx=aIt.Value(); @@ -99,7 +99,7 @@ Standard_Integer baddctools (Draw_Interpretor& , // aS=DBRep::Get(a[1]); // - BOPCol_ListOfShape& aLT=BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLT=BOPTest_Objects::Tools(); aIt.Initialize(aS); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aSx=aIt.Value(); @@ -125,7 +125,7 @@ Standard_Integer baddobjects (Draw_Interpretor& , Standard_Integer i; TopoDS_Shape aS; // - BOPCol_ListOfShape& aLS=BOPTest_Objects::Shapes(); + TopTools_ListOfShape& aLS=BOPTest_Objects::Shapes(); for (i = 1; i < n; ++i) { aS=DBRep::Get(a[i]); aLS.Append(aS); @@ -145,7 +145,7 @@ Standard_Integer bclearobjects (Draw_Interpretor& , printf(" use bclearobjects\n"); return 0; } - BOPCol_ListOfShape& aLS=BOPTest_Objects::Shapes(); + TopTools_ListOfShape& aLS=BOPTest_Objects::Shapes(); aLS.Clear(); // return 0; @@ -166,7 +166,7 @@ Standard_Integer baddtools (Draw_Interpretor& , Standard_Integer i; TopoDS_Shape aS; // - BOPCol_ListOfShape& aLS=BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLS=BOPTest_Objects::Tools(); for (i = 1; i < n; ++i) { aS=DBRep::Get(a[i]); aLS.Append(aS); @@ -186,7 +186,7 @@ Standard_Integer bcleartools (Draw_Interpretor& , printf(" use bcleartools\n"); return 0; } - BOPCol_ListOfShape& aLS=BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLS=BOPTest_Objects::Tools(); aLS.Clear(); // return 0; diff --git a/src/BOPTest/BOPTest_Objects.cxx b/src/BOPTest/BOPTest_Objects.cxx index 61c3416fa2..8db3e1211e 100644 --- a/src/BOPTest/BOPTest_Objects.cxx +++ b/src/BOPTest/BOPTest_Objects.cxx @@ -95,11 +95,11 @@ class BOPTest_Session { myBuilder=myBuilderDefault; }; // - BOPCol_ListOfShape& Shapes() { + TopTools_ListOfShape& Shapes() { return myShapes; } // - BOPCol_ListOfShape& Tools() { + TopTools_ListOfShape& Tools() { return myTools; } // @@ -162,8 +162,8 @@ protected: BOPAlgo_Builder* myBuilder; BOPAlgo_Builder* myBuilderDefault; // - BOPCol_ListOfShape myShapes; - BOPCol_ListOfShape myTools; + TopTools_ListOfShape myShapes; + TopTools_ListOfShape myTools; Standard_Boolean myRunParallel; Standard_Boolean myNonDestructive; Standard_Real myFuzzyValue; @@ -287,7 +287,7 @@ BOPAlgo_Splitter& BOPTest_Objects::Splitter() //function : Shapes //purpose : //======================================================================= -BOPCol_ListOfShape& BOPTest_Objects::Shapes() +TopTools_ListOfShape& BOPTest_Objects::Shapes() { return GetSession().Shapes(); } @@ -295,7 +295,7 @@ BOPCol_ListOfShape& BOPTest_Objects::Shapes() //function : Tools //purpose : //======================================================================= -BOPCol_ListOfShape& BOPTest_Objects::Tools() +TopTools_ListOfShape& BOPTest_Objects::Tools() { return GetSession().Tools(); } diff --git a/src/BOPTest/BOPTest_Objects.hxx b/src/BOPTest/BOPTest_Objects.hxx index 02911bc0d0..a5d1570506 100644 --- a/src/BOPTest/BOPTest_Objects.hxx +++ b/src/BOPTest/BOPTest_Objects.hxx @@ -20,7 +20,7 @@ #include #include -#include +#include #include #include #include @@ -59,9 +59,9 @@ public: Standard_EXPORT static BOPAlgo_Splitter& Splitter(); - Standard_EXPORT static BOPCol_ListOfShape& Shapes(); + Standard_EXPORT static TopTools_ListOfShape& Shapes(); - Standard_EXPORT static BOPCol_ListOfShape& Tools(); + Standard_EXPORT static TopTools_ListOfShape& Tools(); Standard_EXPORT static void SetBuilder (const BOPAlgo_PBuilder& theBuilder); diff --git a/src/BOPTest/BOPTest_PartitionCommands.cxx b/src/BOPTest/BOPTest_PartitionCommands.cxx index 9cc1cea800..dfbb4fc1b3 100644 --- a/src/BOPTest/BOPTest_PartitionCommands.cxx +++ b/src/BOPTest/BOPTest_PartitionCommands.cxx @@ -72,9 +72,9 @@ Standard_Integer bfillds(Draw_Interpretor& di, Standard_Boolean bRunParallel, bNonDestructive, bShowTime; Standard_Integer i, aNbS; Standard_Real aTol; - BOPCol_ListIteratorOfListOfShape aIt; - BOPCol_ListOfShape aLC; - BOPCol_ListOfShape& aLS=BOPTest_Objects::Shapes(); + TopTools_ListIteratorOfListOfShape aIt; + TopTools_ListOfShape aLC; + TopTools_ListOfShape& aLS=BOPTest_Objects::Shapes(); aNbS=aLS.Extent(); if (!aNbS) { di << " no objects to process\n"; @@ -94,7 +94,7 @@ Standard_Integer bfillds(Draw_Interpretor& di, } } // - BOPCol_ListOfShape& aLT=BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLT=BOPTest_Objects::Tools(); // aIt.Initialize(aLS); for (; aIt.More(); aIt.Next()) { @@ -158,7 +158,7 @@ Standard_Integer bbuild(Draw_Interpretor& di, Standard_Boolean bRunParallel, bShowTime; Standard_Integer i; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // BOPAlgo_PaveFiller& aPF=BOPTest_Objects::PaveFiller(); // @@ -166,14 +166,14 @@ Standard_Integer bbuild(Draw_Interpretor& di, BOPAlgo_Builder& aBuilder=BOPTest_Objects::Builder(); aBuilder.Clear(); // - BOPCol_ListOfShape& aLSObj=BOPTest_Objects::Shapes(); + TopTools_ListOfShape& aLSObj=BOPTest_Objects::Shapes(); aIt.Initialize(aLSObj); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS=aIt.Value(); aBuilder.AddArgument(aS); } // - BOPCol_ListOfShape& aLSTool=BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLSTool=BOPTest_Objects::Tools(); aIt.Initialize(aLSTool); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS=aIt.Value(); @@ -240,7 +240,7 @@ Standard_Integer bbop(Draw_Interpretor& di, Standard_Boolean bRunParallel, bShowTime; Standard_Integer iOp, i; BOPAlgo_Operation aOp; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // iOp=Draw::Atoi(a[2]); if (iOp<0 || iOp>4) { @@ -270,7 +270,7 @@ Standard_Integer bbop(Draw_Interpretor& di, // pBuilder->Clear(); // - BOPCol_ListOfShape& aLSObj=BOPTest_Objects::Shapes(); + TopTools_ListOfShape& aLSObj=BOPTest_Objects::Shapes(); aIt.Initialize(aLSObj); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS=aIt.Value(); @@ -280,7 +280,7 @@ Standard_Integer bbop(Draw_Interpretor& di, if (aOp!=BOPAlgo_SECTION) { BOPAlgo_BOP *pBOP=(BOPAlgo_BOP *)pBuilder; // - BOPCol_ListOfShape& aLSTools=BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLSTools=BOPTest_Objects::Tools(); aIt.Initialize(aLSTools); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS=aIt.Value(); @@ -290,7 +290,7 @@ Standard_Integer bbop(Draw_Interpretor& di, pBOP->SetOperation(aOp); } else { - BOPCol_ListOfShape& aLSTools=BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLSTools=BOPTest_Objects::Tools(); aIt.Initialize(aLSTools); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aS=aIt.Value(); @@ -354,11 +354,11 @@ Standard_Integer bsplit(Draw_Interpretor& di, pSplitter->Clear(); // // set objects - const BOPCol_ListOfShape& aLSObjects = BOPTest_Objects::Shapes(); + const TopTools_ListOfShape& aLSObjects = BOPTest_Objects::Shapes(); pSplitter->SetArguments(aLSObjects); // // set tools - BOPCol_ListOfShape& aLSTools = BOPTest_Objects::Tools(); + TopTools_ListOfShape& aLSTools = BOPTest_Objects::Tools(); pSplitter->SetTools(aLSTools); // // set options diff --git a/src/BOPTest/BOPTest_UtilityCommands.cxx b/src/BOPTest/BOPTest_UtilityCommands.cxx index dab78dfa07..6e6d8b977b 100644 --- a/src/BOPTest/BOPTest_UtilityCommands.cxx +++ b/src/BOPTest/BOPTest_UtilityCommands.cxx @@ -215,7 +215,7 @@ static Standard_Integer BuildPcurvesOnPlane(Draw_Interpretor& theDI, BRepAdaptor_Surface aS(aF, Standard_False); if (aS.GetType() == GeomAbs_Plane) { - BOPCol_ListOfShape aLE; + TopTools_ListOfShape aLE; TopExp_Explorer exp1(aF, TopAbs_EDGE); for (; exp1.More(); exp1.Next()) aLE.Append(exp1.Current()); diff --git a/src/BOPTools/BOPTools.cxx b/src/BOPTools/BOPTools.cxx deleted file mode 100644 index 9ab835dc43..0000000000 --- a/src/BOPTools/BOPTools.cxx +++ /dev/null @@ -1,98 +0,0 @@ -// Created by: Peter KURNEV -// 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 -#include - -//======================================================================= -//function : MapShapes -//purpose : -//======================================================================= -void BOPTools::MapShapes(const TopoDS_Shape& S, - BOPCol_MapOfShape& M) -{ - M.Add(S); - TopoDS_Iterator It(S); - while (It.More()) { - MapShapes(It.Value(),M); - It.Next(); - } -} - - -//======================================================================= -//function : MapShapes -//purpose : -//======================================================================= -void BOPTools::MapShapes(const TopoDS_Shape& S, - BOPCol_IndexedMapOfShape& M) -{ - M.Add(S); - TopoDS_Iterator It(S); - while (It.More()) { - MapShapes(It.Value(),M); - It.Next(); - } -} - -//======================================================================= -//function : MapShapes -//purpose : -//======================================================================= -void BOPTools::MapShapes(const TopoDS_Shape& S, - const TopAbs_ShapeEnum T, - BOPCol_IndexedMapOfShape& M) -{ - TopExp_Explorer Ex(S,T); - while (Ex.More()) { - M.Add(Ex.Current()); - Ex.Next(); - } -} -//======================================================================= -//function : MapShapesAndAncestors -//purpose : -//======================================================================= -void BOPTools::MapShapesAndAncestors - (const TopoDS_Shape& S, - const TopAbs_ShapeEnum TS, - const TopAbs_ShapeEnum TA, - BOPCol_IndexedDataMapOfShapeListOfShape& Map) -{ - // visit ancestors - TopExp_Explorer aExA(S, TA); - for (; aExA.More(); aExA.Next()) - { - // visit shapes - const TopoDS_Shape& anAnc = aExA.Current(); - // - TopExp_Explorer aExS(anAnc, TS); - for (; aExS.More(); aExS.Next()) - { - const TopoDS_Shape& aSS = aExS.Current(); - BOPCol_ListOfShape* pLA = Map.ChangeSeek(aSS); - if (!pLA) - pLA = &Map(Map.Add(aSS, BOPCol_ListOfShape())); - pLA->Append(anAnc); - } - } - - // visit shapes not under ancestors - TopExp_Explorer aExS(S, TS, TA); - for (; aExS.More(); aExS.Next()) - Map.Add(aExS.Current(), BOPCol_ListOfShape()); -} diff --git a/src/BOPTools/BOPTools.hxx b/src/BOPTools/BOPTools.hxx deleted file mode 100644 index 91631ed925..0000000000 --- a/src/BOPTools/BOPTools.hxx +++ /dev/null @@ -1,82 +0,0 @@ -// Created by: Peter KURNEV -// Copyright (c) 2000-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. - -#ifndef _BOPTools_HeaderFile -#define _BOPTools_HeaderFile - -#include -#include -#include - -#include -#include -#include -#include -class TopoDS_Shape; -class BOPTools_ShapeSet; -class BOPTools_EdgeSet; -class BOPTools_AlgoTools; -class BOPTools_Set; -class BOPTools_SetMapHasher; -class BOPTools_AlgoTools2D; -class BOPTools_AlgoTools3D; - - - -class BOPTools -{ -public: - - DEFINE_STANDARD_ALLOC - - - Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, BOPCol_MapOfShape& M); - - Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, BOPCol_IndexedMapOfShape& M); - - Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, const TopAbs_ShapeEnum T, BOPCol_IndexedMapOfShape& M); - - Standard_EXPORT static void MapShapesAndAncestors (const TopoDS_Shape& S, const TopAbs_ShapeEnum TS, const TopAbs_ShapeEnum TA, BOPCol_IndexedDataMapOfShapeListOfShape& M); - - - - -protected: - - - - - -private: - - - - -friend class BOPTools_ShapeSet; -friend class BOPTools_EdgeSet; -friend class BOPTools_AlgoTools; -friend class BOPTools_Set; -friend class BOPTools_SetMapHasher; -friend class BOPTools_AlgoTools2D; -friend class BOPTools_AlgoTools3D; - -}; - - - - - - - -#endif // _BOPTools_HeaderFile diff --git a/src/BOPTools/BOPTools_AlgoTools.cxx b/src/BOPTools/BOPTools_AlgoTools.cxx index 9f06fbf2c1..d6b743288f 100644 --- a/src/BOPTools/BOPTools_AlgoTools.cxx +++ b/src/BOPTools/BOPTools_AlgoTools.cxx @@ -16,10 +16,6 @@ // commercial license or contractual agreement. -#include -#include -#include -#include #include #include #include @@ -65,6 +61,9 @@ #include #include #include +#include +#include +#include #include #include @@ -76,7 +75,7 @@ static static Standard_Boolean FindFacePairs (const TopoDS_Edge& theE, - const BOPCol_ListOfShape& thLF, + const TopTools_ListOfShape& thLF, BOPTools_ListOfCoupleOfShape& theLCFF, Handle(IntTools_Context)& theContext); static @@ -122,13 +121,13 @@ void BOPTools_AlgoTools::MakeConnexityBlocks (const TopoDS_Shape& theS, const TopAbs_ShapeEnum theConnectionType, const TopAbs_ShapeEnum theElementType, - BOPCol_ListOfListOfShape& theLCB, - BOPCol_IndexedDataMapOfShapeListOfShape& theConnectionMap) + TopTools_ListOfListOfShape& theLCB, + TopTools_IndexedDataMapOfShapeListOfShape& theConnectionMap) { // Map shapes to find connected elements - BOPTools::MapShapesAndAncestors(theS, theConnectionType, theElementType, theConnectionMap); + TopExp::MapShapesAndAncestors(theS, theConnectionType, theElementType, theConnectionMap); // Fence map - BOPCol_MapOfShape aMFence; + TopTools_MapOfShape aMFence; TopExp_Explorer aExp(theS, theElementType); for (; aExp.More(); aExp.Next()) @@ -138,11 +137,11 @@ void BOPTools_AlgoTools::MakeConnexityBlocks continue; } // The block - BOPCol_ListOfShape aLBlock; + TopTools_ListOfShape aLBlock; // Start the block aLBlock.Append(aS); // Look for connected parts - BOPCol_ListIteratorOfListOfShape aItB(aLBlock); + TopTools_ListIteratorOfListOfShape aItB(aLBlock); for (; aItB.More(); aItB.Next()) { const TopoDS_Shape& aS1 = aItB.Value(); @@ -150,8 +149,8 @@ void BOPTools_AlgoTools::MakeConnexityBlocks for (; aExpSS.More(); aExpSS.Next()) { const TopoDS_Shape& aSubS = aExpSS.Current(); - const BOPCol_ListOfShape& aLS = theConnectionMap.FindFromKey(aSubS); - BOPCol_ListIteratorOfListOfShape aItLS(aLS); + const TopTools_ListOfShape& aLS = theConnectionMap.FindFromKey(aSubS); + TopTools_ListIteratorOfListOfShape aItLS(aLS); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aS2 = aItLS.Value(); @@ -173,21 +172,21 @@ void BOPTools_AlgoTools::MakeConnexityBlocks (const TopoDS_Shape& theS, const TopAbs_ShapeEnum theConnectionType, const TopAbs_ShapeEnum theElementType, - BOPCol_ListOfShape& theLCB) + TopTools_ListOfShape& theLCB) { - BOPCol_ListOfListOfShape aLBlocks; - BOPCol_IndexedDataMapOfShapeListOfShape aCMap; + TopTools_ListOfListOfShape aLBlocks; + TopTools_IndexedDataMapOfShapeListOfShape aCMap; BOPTools_AlgoTools::MakeConnexityBlocks(theS, theConnectionType, theElementType, aLBlocks, aCMap); // Make compound from each block - BOPCol_ListIteratorOfListOfListOfShape aItB(aLBlocks); + TopTools_ListIteratorOfListOfListOfShape aItB(aLBlocks); for (; aItB.More(); aItB.Next()) { - const BOPCol_ListOfShape& aLB = aItB.Value(); + const TopTools_ListOfShape& aLB = aItB.Value(); TopoDS_Compound aBlock; BRep_Builder().MakeCompound(aBlock); - for (BOPCol_ListIteratorOfListOfShape it(aLB); it.More(); it.Next()) + for (TopTools_ListIteratorOfListOfShape it(aLB); it.More(); it.Next()) BRep_Builder().Add(aBlock, it.Value()); theLCB.Append(aBlock); @@ -199,7 +198,7 @@ void BOPTools_AlgoTools::MakeConnexityBlocks // purpose: //======================================================================= void BOPTools_AlgoTools::MakeConnexityBlocks - (const BOPCol_ListOfShape& theLS, + (const TopTools_ListOfShape& theLS, const TopAbs_ShapeEnum theConnectionType, const TopAbs_ShapeEnum theElementType, BOPTools_ListOfConnexityBlock& theLCB) @@ -209,9 +208,9 @@ void BOPTools_AlgoTools::MakeConnexityBlocks TopoDS_Compound aCStart; aBB.MakeCompound(aCStart); - BOPCol_MapOfShape aMFence, aMNRegular; + TopTools_MapOfShape aMFence, aMNRegular; - BOPCol_ListIteratorOfListOfShape aItL(theLS); + TopTools_ListIteratorOfListOfShape aItL(theLS); for (; aItL.More(); aItL.Next()) { const TopoDS_Shape& aS = aItL.Value(); @@ -221,21 +220,21 @@ void BOPTools_AlgoTools::MakeConnexityBlocks aMNRegular.Add(aS); } - BOPCol_ListOfListOfShape aLCB; - BOPCol_IndexedDataMapOfShapeListOfShape aCMap; + TopTools_ListOfListOfShape aLCB; + TopTools_IndexedDataMapOfShapeListOfShape aCMap; BOPTools_AlgoTools::MakeConnexityBlocks(aCStart, theConnectionType, theElementType, aLCB, aCMap); // Save the blocks and check their regularity - BOPCol_ListIteratorOfListOfListOfShape aItB(aLCB); + TopTools_ListIteratorOfListOfListOfShape aItB(aLCB); for (; aItB.More(); aItB.Next()) { - const BOPCol_ListOfShape& aBlock = aItB.Value(); + const TopTools_ListOfShape& aBlock = aItB.Value(); BOPTools_ConnexityBlock aCB; - BOPCol_ListOfShape& aLCS = aCB.ChangeShapes(); + TopTools_ListOfShape& aLCS = aCB.ChangeShapes(); Standard_Boolean bRegular = Standard_True; - for (BOPCol_ListIteratorOfListOfShape it(aBlock); it.More(); it.Next()) + for (TopTools_ListIteratorOfListOfShape it(aBlock); it.More(); it.Next()) { TopoDS_Shape aS = it.Value(); if (aMNRegular.Contains(aS)) @@ -270,8 +269,8 @@ void BOPTools_AlgoTools::MakeConnexityBlocks void BOPTools_AlgoTools::OrientEdgesOnWire(TopoDS_Shape& theWire) { // make vertex-edges connexity map - BOPCol_IndexedDataMapOfShapeListOfShape aVEMap; - BOPTools::MapShapesAndAncestors(theWire, TopAbs_VERTEX, TopAbs_EDGE, aVEMap); + TopTools_IndexedDataMapOfShapeListOfShape aVEMap; + TopExp::MapShapesAndAncestors(theWire, TopAbs_VERTEX, TopAbs_EDGE, aVEMap); // if (aVEMap.IsEmpty()) { return; @@ -282,7 +281,7 @@ void BOPTools_AlgoTools::OrientEdgesOnWire(TopoDS_Shape& theWire) TopoDS_Wire aWire; aBB.MakeWire(aWire); // fence map - BOPCol_MapOfOrientedShape aMFence; + TopTools_MapOfOrientedShape aMFence; // TopoDS_Iterator aIt(theWire); for (; aIt.More(); aIt.Next()) { @@ -307,7 +306,7 @@ void BOPTools_AlgoTools::OrientEdgesOnWire(TopoDS_Shape& theWire) TopoDS_Shape aVC = !i ? aV1 : aV2; // for (;;) { - const BOPCol_ListOfShape& aLE = aVEMap.FindFromKey(aVC); + const TopTools_ListOfShape& aLE = aVEMap.FindFromKey(aVC); if (aLE.Extent() != 2) { // free vertex or multi-connexity, go to the next edge break; @@ -315,7 +314,7 @@ void BOPTools_AlgoTools::OrientEdgesOnWire(TopoDS_Shape& theWire) // Standard_Boolean bStop = Standard_True; // - BOPCol_ListIteratorOfListOfShape aItLE(aLE); + TopTools_ListIteratorOfListOfShape aItLE(aLE); for (; aItLE.More(); aItLE.Next()) { const TopoDS_Edge& aEN = TopoDS::Edge(aItLE.Value()); if (aMFence.Contains(aEN)) { @@ -362,26 +361,26 @@ void BOPTools_AlgoTools::OrientFacesOnShell (TopoDS_Shape& aShell) TopAbs_Orientation anOrE1, anOrE2; TopoDS_Face aF1x, aF2x; TopoDS_Shape aShellNew; - BOPCol_IndexedDataMapOfShapeListOfShape aEFMap; - BOPCol_IndexedMapOfShape aProcessedFaces; + TopTools_IndexedDataMapOfShapeListOfShape aEFMap; + TopTools_IndexedMapOfShape aProcessedFaces; BRep_Builder aBB; // BOPTools_AlgoTools::MakeContainer(TopAbs_SHELL, aShellNew); // - BOPTools::MapShapesAndAncestors(aShell, + TopExp::MapShapesAndAncestors(aShell, TopAbs_EDGE, TopAbs_FACE, aEFMap); aNbE=aEFMap.Extent(); // // One seam edge in aEFMap contains 2 equivalent faces. for (i=1; i<=aNbE; ++i) { - BOPCol_ListOfShape& aLF=aEFMap.ChangeFromIndex(i); + TopTools_ListOfShape& aLF=aEFMap.ChangeFromIndex(i); aNbF=aLF.Extent(); if (aNbF>1) { - BOPCol_ListOfShape aLFTmp; - BOPCol_IndexedMapOfShape aFM; + TopTools_ListOfShape aLFTmp; + TopTools_IndexedMapOfShape aFM; // - BOPCol_ListIteratorOfListOfShape anIt(aLF); + TopTools_ListIteratorOfListOfShape anIt(aLF); for (; anIt.More(); anIt.Next()) { const TopoDS_Shape& aF=anIt.Value(); if (!aFM.Contains(aF)) { @@ -401,7 +400,7 @@ void BOPTools_AlgoTools::OrientFacesOnShell (TopoDS_Shape& aShell) continue; } // - const BOPCol_ListOfShape& aLF=aEFMap.FindFromIndex(i); + const TopTools_ListOfShape& aLF=aEFMap.FindFromIndex(i); aNbF=aLF.Extent(); if (aNbF!=2) { continue; @@ -466,10 +465,10 @@ void BOPTools_AlgoTools::OrientFacesOnShell (TopoDS_Shape& aShell) continue; } // - const BOPCol_ListOfShape& aLF=aEFMap.FindFromIndex(i); + const TopTools_ListOfShape& aLF=aEFMap.FindFromIndex(i); aNbF=aLF.Extent(); if (aNbF!=2) { - BOPCol_ListIteratorOfListOfShape anIt(aLF); + TopTools_ListIteratorOfListOfShape anIt(aLF); for(; anIt.More(); anIt.Next()) { const TopoDS_Face& aF=(*(TopoDS_Face*)(&anIt.Value())); if (!aProcessedFaces.Contains(aF)) { @@ -506,26 +505,26 @@ TopAbs_Orientation Orientation(const TopoDS_Edge& anE, // purpose: //======================================================================= void BOPTools_AlgoTools::MakeConnexityBlock - (BOPCol_ListOfShape& theLFIn, - BOPCol_IndexedMapOfShape& theMEAvoid, - BOPCol_ListOfShape& theLCB, + (TopTools_ListOfShape& theLFIn, + TopTools_IndexedMapOfShape& theMEAvoid, + TopTools_ListOfShape& theLCB, const Handle(NCollection_BaseAllocator)& theAllocator) { Standard_Integer aNbF, aNbAdd1, aNbAdd, i; TopExp_Explorer aExp; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // - BOPCol_IndexedMapOfShape aMCB(100, theAllocator); - BOPCol_IndexedMapOfShape aMAdd(100, theAllocator); - BOPCol_IndexedMapOfShape aMAdd1(100, theAllocator); - BOPCol_IndexedDataMapOfShapeListOfShape aMEF(100, theAllocator); + TopTools_IndexedMapOfShape aMCB(100, theAllocator); + TopTools_IndexedMapOfShape aMAdd(100, theAllocator); + TopTools_IndexedMapOfShape aMAdd1(100, theAllocator); + TopTools_IndexedDataMapOfShapeListOfShape aMEF(100, theAllocator); // // 1. aMEF aNbF=theLFIn.Extent(); aIt.Initialize(theLFIn); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aF=aIt.Value(); - BOPTools::MapShapesAndAncestors(aF, TopAbs_EDGE, TopAbs_FACE, aMEF); + TopExp::MapShapesAndAncestors(aF, TopAbs_EDGE, TopAbs_FACE, aMEF); } // // 2. aMCB @@ -546,7 +545,7 @@ void BOPTools_AlgoTools::MakeConnexityBlock continue; } // - const BOPCol_ListOfShape& aLF=aMEF.FindFromKey(aE); + const TopTools_ListOfShape& aLF=aMEF.FindFromKey(aE); aIt.Initialize(aLF); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aFx=aIt.Value(); @@ -616,7 +615,7 @@ TopAbs_State BOPTools_AlgoTools::ComputeState (const TopoDS_Face& theF, const TopoDS_Solid& theRef, const Standard_Real theTol, - BOPCol_IndexedMapOfShape& theBounds, + TopTools_IndexedMapOfShape& theBounds, Handle(IntTools_Context)& theContext) { TopAbs_State aState; @@ -750,7 +749,7 @@ TopAbs_State BOPTools_AlgoTools::ComputeState Standard_Boolean BOPTools_AlgoTools::IsInternalFace (const TopoDS_Face& theFace, const TopoDS_Solid& theSolid, - BOPCol_IndexedDataMapOfShapeListOfShape& theMEF, + TopTools_IndexedDataMapOfShapeListOfShape& theMEF, const Standard_Real theTol, Handle(IntTools_Context)& theContext) { @@ -759,7 +758,7 @@ Standard_Boolean BOPTools_AlgoTools::IsInternalFace TopAbs_Orientation aOr; TopoDS_Edge aE1; TopExp_Explorer aExp; - BOPCol_ListIteratorOfListOfShape aItF; + TopTools_ListIteratorOfListOfShape aItF; // // For all invoked functions: [::IsInternalFace(...)] // the returned value iRet means: @@ -792,7 +791,7 @@ Standard_Boolean BOPTools_AlgoTools::IsInternalFace continue; } // aE - BOPCol_ListOfShape& aLF=theMEF.ChangeFromKey(aE); + TopTools_ListOfShape& aLF=theMEF.ChangeFromKey(aE); aNbF=aLF.Extent(); if (!aNbF) { return iRet != 0; // it can not be so @@ -847,9 +846,9 @@ Standard_Boolean BOPTools_AlgoTools::IsInternalFace // 2. Classify face using classifier // TopAbs_State aState; - BOPCol_IndexedMapOfShape aBounds; + TopTools_IndexedMapOfShape aBounds; // - BOPTools::MapShapes(theSolid, TopAbs_EDGE, aBounds); + TopExp::MapShapes(theSolid, TopAbs_EDGE, aBounds); // aState=BOPTools_AlgoTools::ComputeState(theFace, theSolid, theTol, aBounds, theContext); @@ -862,7 +861,7 @@ Standard_Boolean BOPTools_AlgoTools::IsInternalFace Standard_Integer BOPTools_AlgoTools::IsInternalFace (const TopoDS_Face& theFace, const TopoDS_Edge& theEdge, - BOPCol_ListOfShape& theLF, + TopTools_ListOfShape& theLF, Handle(IntTools_Context)& theContext) { Standard_Integer aNbF, iRet; @@ -1646,7 +1645,7 @@ Standard_Integer BOPTools_AlgoTools::ComputeVV(const TopoDS_Vertex& aV1, // function: MakeVertex // purpose : //======================================================================= -void BOPTools_AlgoTools::MakeVertex(const BOPCol_ListOfShape& aLV, +void BOPTools_AlgoTools::MakeVertex(const TopTools_ListOfShape& aLV, TopoDS_Vertex& aVnew) { Standard_Integer aNb = aLV.Extent(); @@ -1695,17 +1694,17 @@ Standard_Boolean BOPTools_AlgoTools::GetEdgeOnFace //purpose : //======================================================================= Standard_Boolean FindFacePairs (const TopoDS_Edge& theE, - const BOPCol_ListOfShape& thLF, + const TopTools_ListOfShape& thLF, BOPTools_ListOfCoupleOfShape& theLCFF, Handle(IntTools_Context)& theContext) { Standard_Boolean bFound; Standard_Integer i, aNbCEF; TopAbs_Orientation aOr, aOrC = TopAbs_FORWARD; - BOPCol_MapOfShape aMFP; + TopTools_MapOfShape aMFP; TopoDS_Face aF1, aF2; TopoDS_Edge aEL, aE1; - BOPCol_ListIteratorOfListOfShape aItLF; + TopTools_ListIteratorOfListOfShape aItLF; BOPTools_CoupleOfShape aCEF, aCFF; BOPTools_ListOfCoupleOfShape aLCEF, aLCEFx; BOPTools_ListIteratorOfListOfCoupleOfShape aIt; @@ -2181,12 +2180,12 @@ Standard_Boolean BOPTools_AlgoTools::IsOpenShell(const TopoDS_Shell& aSh) Standard_Boolean bRet; Standard_Integer i, aNbE, aNbF; TopAbs_Orientation aOrF; - BOPCol_IndexedDataMapOfShapeListOfShape aMEF; - BOPCol_ListIteratorOfListOfShape aItLS; + TopTools_IndexedDataMapOfShapeListOfShape aMEF; + TopTools_ListIteratorOfListOfShape aItLS; // bRet=Standard_False; // - BOPTools::MapShapesAndAncestors(aSh, TopAbs_EDGE, TopAbs_FACE, aMEF); + TopExp::MapShapesAndAncestors(aSh, TopAbs_EDGE, TopAbs_FACE, aMEF); // aNbE=aMEF.Extent(); for (i=1; i<=aNbE; ++i) { @@ -2196,7 +2195,7 @@ Standard_Boolean BOPTools_AlgoTools::IsOpenShell(const TopoDS_Shell& aSh) } // aNbF=0; - const BOPCol_ListOfShape& aLF=aMEF(i); + const TopTools_ListOfShape& aLF=aMEF(i); aItLS.Initialize(aLF); for (; aItLS.More(); aItLS.Next()) { const TopoDS_Shape& aF=aItLS.Value(); diff --git a/src/BOPTools/BOPTools_AlgoTools.hxx b/src/BOPTools/BOPTools_AlgoTools.hxx index 0a430af2b2..96102b3b5e 100644 --- a/src/BOPTools/BOPTools_AlgoTools.hxx +++ b/src/BOPTools/BOPTools_AlgoTools.hxx @@ -22,18 +22,18 @@ #include #include +#include #include #include -#include -#include -#include #include #include -#include -#include +#include #include -#include -#include +#include +#include +#include +#include +#include #include class TopoDS_Vertex; class gp_Pnt; @@ -60,7 +60,7 @@ public: const TopoDS_Vertex& aV2, const Standard_Real theFuzz = Precision::Confusion()); - Standard_EXPORT static void MakeVertex (const BOPCol_ListOfShape& aLV, TopoDS_Vertex& aV); + Standard_EXPORT static void MakeVertex (const TopTools_ListOfShape& aLV, TopoDS_Vertex& aV); Standard_EXPORT static void MakeEdge (const IntTools_Curve& theCurve, const TopoDS_Vertex& theV1, const Standard_Real theT1, const TopoDS_Vertex& theV2, const Standard_Real theT2, const Standard_Real theTolR3D, TopoDS_Edge& theE); @@ -134,14 +134,14 @@ public: //! * 0 state is not IN //! * 1 state is IN //! * 2 state can not be found by the method of angles - Standard_EXPORT static Standard_Integer IsInternalFace (const TopoDS_Face& theFace, const TopoDS_Edge& theEdge, BOPCol_ListOfShape& theLF, Handle(IntTools_Context)& theContext); + Standard_EXPORT static Standard_Integer IsInternalFace (const TopoDS_Face& theFace, const TopoDS_Edge& theEdge, TopTools_ListOfShape& theLF, Handle(IntTools_Context)& theContext); //! Returns True if the face theFace is inside the //! solid theSolid. //! theMEF - Map Edge/Faces for theSolid //! theTol - value of precision of computation //! theContext- cahed geometrical tools - Standard_EXPORT static Standard_Boolean IsInternalFace (const TopoDS_Face& theFace, const TopoDS_Solid& theSolid, BOPCol_IndexedDataMapOfShapeListOfShape& theMEF, const Standard_Real theTol, Handle(IntTools_Context)& theContext); + Standard_EXPORT static Standard_Boolean IsInternalFace (const TopoDS_Face& theFace, const TopoDS_Solid& theSolid, TopTools_IndexedDataMapOfShapeListOfShape& theMEF, const Standard_Real theTol, Handle(IntTools_Context)& theContext); //! For the face theFace gets the edge theEdgeOnF //! that is the same as theEdge @@ -176,7 +176,7 @@ public: //! theBounds - set of edges of theFace to avoid //! theContext- cahed geometrical tools //! Returns 3-D state. - Standard_EXPORT static TopAbs_State ComputeState (const TopoDS_Face& theFace, const TopoDS_Solid& theSolid, const Standard_Real theTol, BOPCol_IndexedMapOfShape& theBounds, Handle(IntTools_Context)& theContext); + Standard_EXPORT static TopAbs_State ComputeState (const TopoDS_Face& theFace, const TopoDS_Solid& theSolid, const Standard_Real theTol, TopTools_IndexedMapOfShape& theBounds, Handle(IntTools_Context)& theContext); //! Computes the 3-D state of the shape theShape //! toward solid theSolid. @@ -189,7 +189,7 @@ public: //! theLSCB in terms of connexity by edges //! theMapAvoid - set of edges to avoid for //! the treatment - Standard_EXPORT static void MakeConnexityBlock (BOPCol_ListOfShape& theLS, BOPCol_IndexedMapOfShape& theMapAvoid, BOPCol_ListOfShape& theLSCB, const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT static void MakeConnexityBlock (TopTools_ListOfShape& theLS, TopTools_IndexedMapOfShape& theMapAvoid, TopTools_ListOfShape& theLSCB, const Handle(NCollection_BaseAllocator)& theAllocator); //! For the compound builds the blocks (compounds) of //! elements of type connected through the shapes @@ -198,7 +198,7 @@ public: Standard_EXPORT static void MakeConnexityBlocks(const TopoDS_Shape& theS, const TopAbs_ShapeEnum theConnectionType, const TopAbs_ShapeEnum theElementType, - BOPCol_ListOfShape& theLCB); + TopTools_ListOfShape& theLCB); //! For the compound builds the blocks (compounds) of //! elements of type connected through the shapes @@ -208,13 +208,13 @@ public: Standard_EXPORT static void MakeConnexityBlocks(const TopoDS_Shape& theS, const TopAbs_ShapeEnum theConnectionType, const TopAbs_ShapeEnum theElementType, - BOPCol_ListOfListOfShape& theLCB, - BOPCol_IndexedDataMapOfShapeListOfShape& theConnectionMap); + TopTools_ListOfListOfShape& theLCB, + TopTools_IndexedDataMapOfShapeListOfShape& theConnectionMap); //! Makes connexity blocks of elements of the given type with the given type of the //! connecting elements. The blocks are checked on regularity (multi-connectivity) //! and stored to the list of blocks . - Standard_EXPORT static void MakeConnexityBlocks(const BOPCol_ListOfShape& theLS, + Standard_EXPORT static void MakeConnexityBlocks(const TopTools_ListOfShape& theLS, const TopAbs_ShapeEnum theConnectionType, const TopAbs_ShapeEnum theElementType, BOPTools_ListOfConnexityBlock& theLCB); @@ -233,7 +233,7 @@ public: //! perform. Standard_EXPORT static void CorrectTolerances (const TopoDS_Shape& theS, - const BOPCol_IndexedMapOfShape& theMapToAvoid, + const TopTools_IndexedMapOfShape& theMapToAvoid, const Standard_Real theTolMax = 0.0001, const Standard_Boolean theRunParallel = Standard_False); @@ -241,7 +241,7 @@ public: //! in terms of BRepCheck_InvalidCurveOnSurface. Standard_EXPORT static void CorrectCurveOnSurface (const TopoDS_Shape& theS, - const BOPCol_IndexedMapOfShape& theMapToAvoid, + const TopTools_IndexedMapOfShape& theMapToAvoid, const Standard_Real theTolMax = 0.0001, const Standard_Boolean theRunParallel = Standard_False); @@ -249,7 +249,7 @@ public: //! in terms of BRepCheck_InvalidPointOnCurve. Standard_EXPORT static void CorrectPointOnCurve (const TopoDS_Shape& theS, - const BOPCol_IndexedMapOfShape& theMapToAvoid, + const TopTools_IndexedMapOfShape& theMapToAvoid, const Standard_Real theTolMax = 0.0001, const Standard_Boolean theRunParallel = Standard_False); @@ -331,7 +331,7 @@ public: //! Corrects tolerance values of the sub-shapes of the shape if needed. Standard_EXPORT static void CorrectShapeTolerances (const TopoDS_Shape& theS, - const BOPCol_IndexedMapOfShape& theMapToAvoid, + const TopTools_IndexedMapOfShape& theMapToAvoid, const Standard_Boolean theRunParallel = Standard_False); //! Retutns dimension of the shape . diff --git a/src/BOPTools/BOPTools_AlgoTools2D.cxx b/src/BOPTools/BOPTools_AlgoTools2D.cxx index d8cfac6989..41d51b6ad2 100644 --- a/src/BOPTools/BOPTools_AlgoTools2D.cxx +++ b/src/BOPTools/BOPTools_AlgoTools2D.cxx @@ -13,8 +13,6 @@ // commercial license or contractual agreement. -#include -#include #include #include #include diff --git a/src/BOPTools/BOPTools_AlgoTools2D.hxx b/src/BOPTools/BOPTools_AlgoTools2D.hxx index b84bb1dd1d..a867d0d9aa 100644 --- a/src/BOPTools/BOPTools_AlgoTools2D.hxx +++ b/src/BOPTools/BOPTools_AlgoTools2D.hxx @@ -21,7 +21,6 @@ #include #include -#include #include class TopoDS_Edge; class TopoDS_Face; diff --git a/src/BOPTools/BOPTools_AlgoTools3D.cxx b/src/BOPTools/BOPTools_AlgoTools3D.cxx index dae87329af..d45c8a139f 100644 --- a/src/BOPTools/BOPTools_AlgoTools3D.cxx +++ b/src/BOPTools/BOPTools_AlgoTools3D.cxx @@ -14,8 +14,6 @@ #include -#include -#include #include #include #include @@ -62,9 +60,10 @@ #include #include #include +#include static void Add(const TopoDS_Shape& aS, - BOPCol_IndexedMapOfShape& myShapes, + TopTools_IndexedMapOfShape& myShapes, Standard_Boolean& bHasGeometry); static Standard_Boolean HasGeometry(const TopoDS_Shape& aS); @@ -631,7 +630,7 @@ Standard_Boolean BOPTools_AlgoTools3D::IsEmptyShape { Standard_Boolean bHasGeometry=Standard_False; // - BOPCol_IndexedMapOfShape myShapes; + TopTools_IndexedMapOfShape myShapes; // Add(aS, myShapes, bHasGeometry); @@ -642,7 +641,7 @@ Standard_Boolean BOPTools_AlgoTools3D::IsEmptyShape //purpose : //======================================================================= void Add(const TopoDS_Shape& aS, - BOPCol_IndexedMapOfShape& myShapes, + TopTools_IndexedMapOfShape& myShapes, Standard_Boolean& bHasGeometry) { Standard_Integer anIndex; diff --git a/src/BOPTools/BOPTools_AlgoTools_1.cxx b/src/BOPTools/BOPTools_AlgoTools_1.cxx index 34ce166e40..8425994b37 100644 --- a/src/BOPTools/BOPTools_AlgoTools_1.cxx +++ b/src/BOPTools/BOPTools_AlgoTools_1.cxx @@ -16,9 +16,8 @@ #include #include #include -#include -#include #include +#include #include #include #include @@ -59,6 +58,7 @@ #include #include #include +#include #include #include #include @@ -81,12 +81,12 @@ static void CheckEdge (const TopoDS_Edge& E, const Standard_Real aMaxTol, - const BOPCol_IndexedMapOfShape& aMapToAvoid); + const TopTools_IndexedMapOfShape& aMapToAvoid); static void CorrectEdgeTolerance (const TopoDS_Edge& myShape, const TopoDS_Face& S, const Standard_Real aMaxTol, - const BOPCol_IndexedMapOfShape& aMapToAvoid); + const TopTools_IndexedMapOfShape& aMapToAvoid); static Standard_Boolean Validate(const Adaptor3d_Curve& CRef, const Adaptor3d_Curve& Other, @@ -96,22 +96,22 @@ static static void CorrectVertexTolerance(const TopoDS_Edge& aE, - const BOPCol_IndexedMapOfShape& aMapToAvoid); + const TopTools_IndexedMapOfShape& aMapToAvoid); static void CorrectWires(const TopoDS_Face& aF, - const BOPCol_IndexedMapOfShape& aMapToAvoid); + const TopTools_IndexedMapOfShape& aMapToAvoid); static void UpdateEdges(const TopoDS_Face& aF, - const BOPCol_IndexedMapOfShape& aMapToAvoid); + const TopTools_IndexedMapOfShape& aMapToAvoid); static void UpdateShape(const TopoDS_Shape& aS, const Standard_Real aTol, - const BOPCol_IndexedMapOfShape& aMapToAvoid); + const TopTools_IndexedMapOfShape& aMapToAvoid); //======================================================================= //class : BOPTools_CPC @@ -142,7 +142,7 @@ class BOPTools_CPC { return myMaxTol; } // - void SetMapToAvoid(const BOPCol_IndexedMapOfShape& aMapToAvoid) { + void SetMapToAvoid(const TopTools_IndexedMapOfShape& aMapToAvoid) { mypMapToAvoid = &aMapToAvoid; } // @@ -154,17 +154,17 @@ class BOPTools_CPC { protected: Standard_Real myMaxTol; TopoDS_Edge myEdge; - const BOPCol_IndexedMapOfShape* mypMapToAvoid; + const TopTools_IndexedMapOfShape* mypMapToAvoid; }; // //======================================================================= -typedef BOPCol_NCVector BOPTools_VectorOfCPC; +typedef NCollection_Vector BOPTools_VectorOfCPC; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPTools_CPCFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPTools_CPCCnt; // @@ -184,7 +184,7 @@ class BOPTools_CWT { myFace=aF; } // - void SetMapToAvoid(const BOPCol_IndexedMapOfShape& aMapToAvoid) { + void SetMapToAvoid(const TopTools_IndexedMapOfShape& aMapToAvoid) { mypMapToAvoid = &aMapToAvoid; } // @@ -195,16 +195,16 @@ class BOPTools_CWT { // protected: TopoDS_Face myFace; - const BOPCol_IndexedMapOfShape* mypMapToAvoid; + const TopTools_IndexedMapOfShape* mypMapToAvoid; }; //======================================================================= -typedef BOPCol_NCVector BOPTools_VectorOfCWT; +typedef NCollection_Vector BOPTools_VectorOfCWT; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPTools_CWTFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPTools_CWTCnt; // @@ -233,7 +233,7 @@ class BOPTools_CDT { myMaxTol=aMaxTol; } // - void SetMapToAvoid(const BOPCol_IndexedMapOfShape& aMapToAvoid) { + void SetMapToAvoid(const TopTools_IndexedMapOfShape& aMapToAvoid) { mypMapToAvoid = &aMapToAvoid; } // @@ -246,16 +246,16 @@ class BOPTools_CDT { Standard_Real myMaxTol; TopoDS_Edge myEdge; TopoDS_Face myFace; - const BOPCol_IndexedMapOfShape* mypMapToAvoid; + const TopTools_IndexedMapOfShape* mypMapToAvoid; }; //======================================================================= -typedef BOPCol_NCVector BOPTools_VectorOfCDT; +typedef NCollection_Vector BOPTools_VectorOfCDT; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPTools_CDTFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPTools_CDTCnt; // @@ -275,7 +275,7 @@ class BOPTools_CVT { myEdge=aE; } // - void SetMapToAvoid(const BOPCol_IndexedMapOfShape& aMapToAvoid) { + void SetMapToAvoid(const TopTools_IndexedMapOfShape& aMapToAvoid) { mypMapToAvoid = &aMapToAvoid; } // @@ -286,17 +286,17 @@ class BOPTools_CVT { // protected: TopoDS_Edge myEdge; - const BOPCol_IndexedMapOfShape* mypMapToAvoid; + const TopTools_IndexedMapOfShape* mypMapToAvoid; }; // //======================================================================= -typedef BOPCol_NCVector BOPTools_VectorOfCVT; +typedef NCollection_Vector BOPTools_VectorOfCVT; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPTools_CVTFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPTools_CVTCnt; // @@ -316,7 +316,7 @@ class BOPTools_CET { myFace=aF; } // - void SetMapToAvoid(const BOPCol_IndexedMapOfShape& aMapToAvoid) { + void SetMapToAvoid(const TopTools_IndexedMapOfShape& aMapToAvoid) { mypMapToAvoid = &aMapToAvoid; } // @@ -327,16 +327,16 @@ class BOPTools_CET { // protected: TopoDS_Face myFace; - const BOPCol_IndexedMapOfShape* mypMapToAvoid; + const TopTools_IndexedMapOfShape* mypMapToAvoid; }; //======================================================================= -typedef BOPCol_NCVector BOPTools_VectorOfCET; +typedef NCollection_Vector BOPTools_VectorOfCET; // -typedef BOPCol_Functor +typedef BOPTools_Functor BOPTools_CETFunctor; // -typedef BOPCol_Cnt +typedef BOPTools_Cnt BOPTools_CETCnt; // @@ -349,7 +349,7 @@ typedef BOPCol_Cnt //======================================================================= void BOPTools_AlgoTools::CorrectTolerances (const TopoDS_Shape& aShape, - const BOPCol_IndexedMapOfShape& aMapToAvoid, + const TopTools_IndexedMapOfShape& aMapToAvoid, const Standard_Real aMaxTol, const Standard_Boolean bRunParallel) { @@ -363,7 +363,7 @@ void BOPTools_AlgoTools::CorrectTolerances //======================================================================= void BOPTools_AlgoTools::CorrectPointOnCurve (const TopoDS_Shape& aS, - const BOPCol_IndexedMapOfShape& aMapToAvoid, + const TopTools_IndexedMapOfShape& aMapToAvoid, const Standard_Real aMaxTol, const Standard_Boolean bRunParallel) { @@ -373,7 +373,7 @@ void BOPTools_AlgoTools::CorrectPointOnCurve aExp.Init(aS, TopAbs_EDGE); for(; aExp.More(); aExp.Next()) { const TopoDS_Edge& aE=*((TopoDS_Edge*)&aExp.Current()); - BOPTools_CPC& aCPC=aVCPC.Append1(); + BOPTools_CPC& aCPC=aVCPC.Appended(); aCPC.SetEdge(aE); aCPC.SetMaxTol(aMaxTol); aCPC.SetMapToAvoid(aMapToAvoid); @@ -389,7 +389,7 @@ void BOPTools_AlgoTools::CorrectPointOnCurve //======================================================================= void BOPTools_AlgoTools::CorrectCurveOnSurface (const TopoDS_Shape& aS, - const BOPCol_IndexedMapOfShape& aMapToAvoid, + const TopTools_IndexedMapOfShape& aMapToAvoid, const Standard_Real aMaxTol, const Standard_Boolean bRunParallel) { @@ -401,7 +401,7 @@ void BOPTools_AlgoTools::CorrectCurveOnSurface for (; aExpF.More(); aExpF.Next()) { const TopoDS_Face& aF=*((TopoDS_Face*)&aExpF.Current()); // - BOPTools_CWT& aCWT=aVCWT.Append1(); + BOPTools_CWT& aCWT=aVCWT.Appended(); aCWT.SetFace(aF); aCWT.SetMapToAvoid(aMapToAvoid); // @@ -409,7 +409,7 @@ void BOPTools_AlgoTools::CorrectCurveOnSurface for (; aExpE.More(); aExpE.Next()) { const TopoDS_Edge& aE=*((TopoDS_Edge*)&aExpE.Current()); // - BOPTools_CDT& aCDT=aVCDT.Append1(); + BOPTools_CDT& aCDT=aVCDT.Appended(); aCDT.SetEdge(aE); aCDT.SetFace(aF); aCDT.SetMaxTol(aMaxTol); @@ -429,7 +429,7 @@ void BOPTools_AlgoTools::CorrectCurveOnSurface //======================================================================= void BOPTools_AlgoTools::CorrectShapeTolerances (const TopoDS_Shape& aShape, - const BOPCol_IndexedMapOfShape& aMapToAvoid, + const TopTools_IndexedMapOfShape& aMapToAvoid, const Standard_Boolean bRunParallel) { TopExp_Explorer aExp; @@ -439,7 +439,7 @@ void BOPTools_AlgoTools::CorrectShapeTolerances aExp.Init(aShape, TopAbs_EDGE); for (; aExp.More(); aExp.Next()) { const TopoDS_Edge& aE = *(TopoDS_Edge*)&aExp.Current(); - BOPTools_CVT& aCVT=aVCVT.Append1(); + BOPTools_CVT& aCVT=aVCVT.Appended(); aCVT.SetEdge(aE); aCVT.SetMapToAvoid(aMapToAvoid); } @@ -451,7 +451,7 @@ void BOPTools_AlgoTools::CorrectShapeTolerances aExp.Init(aShape, TopAbs_FACE); for (; aExp.More(); aExp.Next()) { const TopoDS_Face& aF = *(TopoDS_Face*)&aExp.Current(); - BOPTools_CET& aCET=aVCET.Append1(); + BOPTools_CET& aCET=aVCET.Appended(); aCET.SetFace(aF); aCET.SetMapToAvoid(aMapToAvoid); } @@ -467,7 +467,7 @@ void BOPTools_AlgoTools::CorrectShapeTolerances //======================================================================= void CheckEdge (const TopoDS_Edge& Ed, const Standard_Real aMaxTol, - const BOPCol_IndexedMapOfShape& aMapToAvoid) + const TopTools_IndexedMapOfShape& aMapToAvoid) { TopoDS_Edge aE = Ed; aE.Orientation(TopAbs_FORWARD); @@ -674,7 +674,7 @@ static // purpose : //======================================================================= void CorrectWires(const TopoDS_Face& aFx, - const BOPCol_IndexedMapOfShape& aMapToAvoid) + const TopTools_IndexedMapOfShape& aMapToAvoid) { Standard_Integer i, aNbV; Standard_Real aTol, aTol2, aD2, aD2max, aT1, aT2, aT; @@ -756,7 +756,7 @@ void CorrectWires(const TopoDS_Face& aFx, void CorrectEdgeTolerance (const TopoDS_Edge& myShape, const TopoDS_Face& S, const Standard_Real aMaxTol, - const BOPCol_IndexedMapOfShape& aMapToAvoid) + const TopTools_IndexedMapOfShape& aMapToAvoid) { // // 1. Minimum of conditions to Perform @@ -976,7 +976,7 @@ void CorrectEdgeTolerance (const TopoDS_Edge& myShape, //purpose : //======================================================================= void CorrectVertexTolerance(const TopoDS_Edge& aE, - const BOPCol_IndexedMapOfShape& aMapToAvoid) + const TopTools_IndexedMapOfShape& aMapToAvoid) { Standard_Real aTolE, aTolV; TopoDS_Iterator aIt; @@ -1110,7 +1110,7 @@ Standard_Boolean Validate(const Adaptor3d_Curve& CRef, // purpose : //======================================================================= void UpdateEdges(const TopoDS_Face& aF, - const BOPCol_IndexedMapOfShape& aMapToAvoid) + const TopTools_IndexedMapOfShape& aMapToAvoid) { Standard_Real aTolF, aTolE, aTolV; TopoDS_Iterator aItF, aItW, aItE; @@ -1145,7 +1145,7 @@ void UpdateEdges(const TopoDS_Face& aF, //======================================================================= void UpdateShape(const TopoDS_Shape& aS, const Standard_Real aTol, - const BOPCol_IndexedMapOfShape& aMapToAvoid) + const TopTools_IndexedMapOfShape& aMapToAvoid) { if (aMapToAvoid.Contains(aS)) { return; diff --git a/src/BOPTools/BOPTools_AlgoTools_2.cxx b/src/BOPTools/BOPTools_AlgoTools_2.cxx index 90baa8a9f6..9219295f96 100644 --- a/src/BOPTools/BOPTools_AlgoTools_2.cxx +++ b/src/BOPTools/BOPTools_AlgoTools_2.cxx @@ -36,7 +36,7 @@ static void TreatCompound(const TopoDS_Shape& theC1, - BOPCol_ListOfShape& theLSX); + TopTools_ListOfShape& theLSX); //======================================================================= // function: UpdateVertex @@ -428,8 +428,8 @@ Standard_Integer BOPTools_AlgoTools::Dimension(const TopoDS_Shape& theS) { Standard_Integer i, iRet, iRx0 = 0, iRx = 0; TopAbs_ShapeEnum aTS; - BOPCol_ListOfShape aLS; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListOfShape aLS; + TopTools_ListIteratorOfListOfShape aIt; // aTS=theS.ShapeType(); if (aTS!=TopAbs_COMPOUND) { @@ -479,12 +479,12 @@ Standard_Integer BOPTools_AlgoTools::Dimension(const TopoDS_Shape& theS) //purpose : //======================================================================= void TreatCompound(const TopoDS_Shape& theC1, - BOPCol_ListOfShape& theLSX) + TopTools_ListOfShape& theLSX) { Standard_Integer aNbC1; TopAbs_ShapeEnum aType; - BOPCol_ListOfShape aLC, aLC1; - BOPCol_ListIteratorOfListOfShape aIt, aIt1; + TopTools_ListOfShape aLC, aLC1; + TopTools_ListIteratorOfListOfShape aIt, aIt1; TopoDS_Iterator aItC; // aLC.Append (theC1); diff --git a/src/BOPCol/BOPCol_IndexedMapOfOrientedShape.hxx b/src/BOPTools/BOPTools_BoxBndTree.hxx similarity index 61% rename from src/BOPCol/BOPCol_IndexedMapOfOrientedShape.hxx rename to src/BOPTools/BOPTools_BoxBndTree.hxx index 3848b37848..419ab6a11b 100644 --- a/src/BOPCol/BOPCol_IndexedMapOfOrientedShape.hxx +++ b/src/BOPTools/BOPTools_BoxBndTree.hxx @@ -1,5 +1,5 @@ // Created by: Eugeny MALTCHIKOV -// Copyright (c) 2015 OPEN CASCADE SAS +// Copyright (c) 2017 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // @@ -12,14 +12,15 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#ifndef BOPCol_IndexedMapOfOrientedShape_HeaderFile -#define BOPCol_IndexedMapOfOrientedShape_HeaderFile +#ifndef BOPTools_BoxBndTree_HeaderFile +#define BOPTools_BoxBndTree_HeaderFile -#include -#include +#include +#include +#include +#include -#include +typedef NCollection_UBTree BOPTools_BoxBndTree; +typedef BOPTools_BoxSelector BOPTools_BoxBndTreeSelector; -typedef NCollection_IndexedMap BOPCol_IndexedMapOfOrientedShape; - -#endif +#endif diff --git a/src/BOPTools/BOPTools_BoxSelector.hxx b/src/BOPTools/BOPTools_BoxSelector.hxx new file mode 100644 index 0000000000..e8bf2683f4 --- /dev/null +++ b/src/BOPTools/BOPTools_BoxSelector.hxx @@ -0,0 +1,70 @@ +// Created by: Eugeny MALTCHIKOV +// Copyright (c) 2017 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. + +#ifndef BOPTools_BoxSelector_HeaderFile +#define BOPTools_BoxSelector_HeaderFile + +#include +#include +#include + +//! Template Selector for the unbalanced binary tree +//! of overlapped bounding boxes. +template class BOPTools_BoxSelector : + public NCollection_UBTree::Selector +{ +public: + + //! Empty constructor + BOPTools_BoxSelector() {}; + + //! Checks if the box should be rejected + virtual Standard_Boolean Reject(const BoxType& theOther) const + { + return myBox.IsOut(theOther); + } + + //! Accepts the index + virtual Standard_Boolean Accept(const Standard_Integer& theIndex) + { + myIndices.Append(theIndex); + return Standard_True; + } + + //! Clears the indices + void Clear() + { + myIndices.Clear(); + } + + //! Sets the box + void SetBox(const BoxType& theBox) + { + myBox = theBox; + } + + //! Returns the list of accepted indices + const TColStd_ListOfInteger& Indices() const + { + return myIndices; + } + +private: + + BoxType myBox; + TColStd_ListOfInteger myIndices; + +}; + +#endif diff --git a/src/BOPTools/BOPTools_ConnexityBlock.hxx b/src/BOPTools/BOPTools_ConnexityBlock.hxx index 5a5e54e454..423e223aea 100644 --- a/src/BOPTools/BOPTools_ConnexityBlock.hxx +++ b/src/BOPTools/BOPTools_ConnexityBlock.hxx @@ -16,7 +16,7 @@ #define BOPTools_ConnexityBlock_HeaderFile #include -#include +#include //======================================================================= //class : ConnexityBlock @@ -38,11 +38,11 @@ class BOPTools_ConnexityBlock { myLoops(myAllocator) { }; // - const BOPCol_ListOfShape& Shapes()const { + const TopTools_ListOfShape& Shapes()const { return myShapes; }; // - BOPCol_ListOfShape& ChangeShapes() { + TopTools_ListOfShape& ChangeShapes() { return myShapes; }; // @@ -54,19 +54,19 @@ class BOPTools_ConnexityBlock { return myRegular; } // - const BOPCol_ListOfShape& Loops()const { + const TopTools_ListOfShape& Loops()const { return myLoops; }; // - BOPCol_ListOfShape& ChangeLoops() { + TopTools_ListOfShape& ChangeLoops() { return myLoops; }; // protected: Handle(NCollection_BaseAllocator) myAllocator; Standard_Boolean myRegular; - BOPCol_ListOfShape myShapes; - BOPCol_ListOfShape myLoops; + TopTools_ListOfShape myShapes; + TopTools_ListOfShape myLoops; }; diff --git a/src/BOPTools/BOPTools_CoupleOfShape.hxx b/src/BOPTools/BOPTools_CoupleOfShape.hxx index 6c9a76caa3..5f2c1c9488 100644 --- a/src/BOPTools/BOPTools_CoupleOfShape.hxx +++ b/src/BOPTools/BOPTools_CoupleOfShape.hxx @@ -15,6 +15,8 @@ #ifndef BOPTools_CoupleOfShape_HeaderFile #define BOPTools_CoupleOfShape_HeaderFile +#include + //======================================================================= //class : //purpose : diff --git a/src/BOPTools/BOPTools_DataMapOfShapeSet.hxx b/src/BOPTools/BOPTools_DataMapOfShapeSet.hxx index f8e8985c37..f0b1c507ef 100644 --- a/src/BOPTools/BOPTools_DataMapOfShapeSet.hxx +++ b/src/BOPTools/BOPTools_DataMapOfShapeSet.hxx @@ -15,12 +15,12 @@ #ifndef BOPTools_DataMapOfShapeSet_HeaderFile #define BOPTools_DataMapOfShapeSet_HeaderFile -#include +#include #include - +#include #include -typedef NCollection_DataMap BOPTools_DataMapOfShapeSet; -typedef BOPTools_DataMapOfShapeSet::Iterator BOPCol_DataMapIteratorOfDataMapOfShapeSet; +typedef NCollection_DataMap BOPTools_DataMapOfShapeSet; +typedef BOPTools_DataMapOfShapeSet::Iterator BOPTools_DataMapIteratorOfDataMapOfShapeSet; #endif diff --git a/src/BOPTools/BOPTools_EdgeSet.hxx b/src/BOPTools/BOPTools_EdgeSet.hxx index 13ec41e935..628323a000 100644 --- a/src/BOPTools/BOPTools_EdgeSet.hxx +++ b/src/BOPTools/BOPTools_EdgeSet.hxx @@ -19,11 +19,11 @@ #include #include -#include -#include -#include -#include +#include #include +#include +#include +#include class TopoDS_Shape; class TopoDS_Edge; @@ -39,7 +39,7 @@ public: BOPTools_EdgeSet(); virtual ~BOPTools_EdgeSet(); - BOPTools_EdgeSet(const BOPCol_BaseAllocator& theAllocator); + BOPTools_EdgeSet(const Handle(NCollection_BaseAllocator)& theAllocator); void SetShape (const TopoDS_Shape& theS); @@ -47,13 +47,13 @@ virtual ~BOPTools_EdgeSet(); void AddEdge (const TopoDS_Edge& theEdge); - Standard_EXPORT void AddEdges (const BOPCol_ListOfShape& theLS); + Standard_EXPORT void AddEdges (const TopTools_ListOfShape& theLS); void AddEdges (const TopoDS_Shape& theFace); void Clear(); - void Get (BOPCol_ListOfShape& theLS) const; + void Get (TopTools_ListOfShape& theLS) const; Standard_Boolean Contains (const BOPTools_EdgeSet& theSet) const; @@ -65,8 +65,8 @@ protected: TopoDS_Shape myShape; - BOPCol_MapOfShape myMap; - BOPCol_ListOfShape myEdges; + TopTools_MapOfShape myMap; + TopTools_ListOfShape myEdges; private: diff --git a/src/BOPTools/BOPTools_EdgeSet.lxx b/src/BOPTools/BOPTools_EdgeSet.lxx index bba12aeec6..02f0029d7c 100644 --- a/src/BOPTools/BOPTools_EdgeSet.lxx +++ b/src/BOPTools/BOPTools_EdgeSet.lxx @@ -80,9 +80,9 @@ //function : AddEdges //purpose : //======================================================================= - inline void BOPTools_EdgeSet::AddEdges(const BOPCol_ListOfShape& theLS) + inline void BOPTools_EdgeSet::AddEdges(const TopTools_ListOfShape& theLS) { - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aIt.Initialize(theLS); for (; aIt.More(); aIt.Next()) { @@ -106,9 +106,9 @@ //function : Get //purpose : //======================================================================= - inline void BOPTools_EdgeSet::Get(BOPCol_ListOfShape& theLS)const + inline void BOPTools_EdgeSet::Get(TopTools_ListOfShape& theLS)const { - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aIt.Initialize(myEdges); for (; aIt.More(); aIt.Next()) { @@ -124,7 +124,7 @@ { Standard_Integer aNbEOther, aNbE; Standard_Boolean bRet; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aNbE=0; aNbEOther=theOther.myEdges.Extent(); diff --git a/src/BOPCol/BOPCol_IndexedDataMapOfShapeShape.hxx b/src/BOPTools/BOPTools_IndexedDataMapOfSetShape.hxx similarity index 68% rename from src/BOPCol/BOPCol_IndexedDataMapOfShapeShape.hxx rename to src/BOPTools/BOPTools_IndexedDataMapOfSetShape.hxx index 8df38ff4b4..a2857d0744 100644 --- a/src/BOPCol/BOPCol_IndexedDataMapOfShapeShape.hxx +++ b/src/BOPTools/BOPTools_IndexedDataMapOfSetShape.hxx @@ -1,5 +1,5 @@ // Created by: Eugeny MALTCHIKOV -// Copyright (c) 2015 OPEN CASCADE SAS +// Copyright (c) 2017 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // @@ -12,14 +12,14 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#ifndef BOPCol_IndexedDataMapOfShapeShape_HeaderFile -#define BOPCol_IndexedDataMapOfShapeShape_HeaderFile - -#include -#include +#ifndef BOPTools_IndexedDataMapOfSetShape_HeaderFile +#define BOPTools_IndexedDataMapOfSetShape_HeaderFile +#include +#include #include +#include -typedef NCollection_IndexedDataMap BOPCol_IndexedDataMapOfShapeShape; +typedef NCollection_IndexedDataMap BOPTools_IndexedDataMapOfSetShape; #endif diff --git a/src/BOPCol/BOPCol_Parallel.hxx b/src/BOPTools/BOPTools_Parallel.hxx similarity index 84% rename from src/BOPCol/BOPCol_Parallel.hxx rename to src/BOPTools/BOPTools_Parallel.hxx index b4b597f205..0fddce5fbd 100644 --- a/src/BOPCol/BOPCol_Parallel.hxx +++ b/src/BOPTools/BOPTools_Parallel.hxx @@ -12,8 +12,8 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#ifndef _BOPDS_Col_HeaderFile -#define _BOPDS_Col_HeaderFile +#ifndef _BOPTools_Parallel_HeaderFile +#define _BOPTools_Parallel_HeaderFile #include #include @@ -29,15 +29,15 @@ // //======================================================================= -//class : BOPCol_Functor +//class : BOPTools_Functor //purpose : //======================================================================= template -class BOPCol_Functor +class BOPTools_Functor { public: //! Constructor. - explicit BOPCol_Functor(TypeSolverVector& theSolverVec) + explicit BOPTools_Functor(TypeSolverVector& theSolverVec) : mySolvers(theSolverVec) {} //! Defines functor interface. @@ -48,26 +48,26 @@ public: } private: - BOPCol_Functor(const BOPCol_Functor&); - BOPCol_Functor& operator= (const BOPCol_Functor&); + BOPTools_Functor(const BOPTools_Functor&); + BOPTools_Functor& operator= (const BOPTools_Functor&); private: TypeSolverVector& mySolvers; }; //======================================================================= -//class : BOPCol_Cnt +//class : BOPTools_Cnt //purpose : //======================================================================= template -class BOPCol_Cnt +class BOPTools_Cnt { public: static void Perform( const Standard_Boolean isRunParallel, TypeSolverVector& theSolverVector ) { TypeFunctor aFunctor(theSolverVector); - OSD_Parallel::For(0, theSolverVector.Extent(), aFunctor, !isRunParallel); + OSD_Parallel::For(0, theSolverVector.Length(), aFunctor, !isRunParallel); } }; @@ -76,12 +76,12 @@ public: // //======================================================================= -//class : BOPCol_ContextFunctor +//class : BOPTools_ContextFunctor //purpose : //======================================================================= template -class BOPCol_ContextFunctor +class BOPTools_ContextFunctor { //! Auxiliary thread ID hasher. struct Hasher @@ -104,7 +104,7 @@ class BOPCol_ContextFunctor public: //! Constructor - explicit BOPCol_ContextFunctor( TypeSolverVector& theVector ) + explicit BOPTools_ContextFunctor( TypeSolverVector& theVector ) : mySolverVector(theVector) {} //! Binds main thread context @@ -145,8 +145,8 @@ public: } private: - BOPCol_ContextFunctor(const BOPCol_ContextFunctor&); - BOPCol_ContextFunctor& operator= (const BOPCol_ContextFunctor&); + BOPTools_ContextFunctor(const BOPTools_ContextFunctor&); + BOPTools_ContextFunctor& operator= (const BOPTools_ContextFunctor&); private: TypeSolverVector& mySolverVector; @@ -155,11 +155,11 @@ private: }; //======================================================================= -//class : BOPCol_ContextCnt +//class : BOPTools_ContextCnt //purpose : //======================================================================= template -class BOPCol_ContextCnt +class BOPTools_ContextCnt { public: static void Perform( const Standard_Boolean isRunParallel, @@ -169,7 +169,7 @@ public: TypeFunctor aFunctor(theSolverVector); aFunctor.SetContext(theContext); - OSD_Parallel::For(0, theSolverVector.Extent(), aFunctor, !isRunParallel); + OSD_Parallel::For(0, theSolverVector.Length(), aFunctor, !isRunParallel); } }; diff --git a/src/BOPTools/BOPTools_Set.cxx b/src/BOPTools/BOPTools_Set.cxx index bd5bb6c600..680545b09d 100644 --- a/src/BOPTools/BOPTools_Set.cxx +++ b/src/BOPTools/BOPTools_Set.cxx @@ -13,12 +13,12 @@ // commercial license or contractual agreement. -#include #include #include #include #include #include +#include static Standard_Integer NormalizedIds(const Standard_Integer aId, @@ -83,7 +83,7 @@ Standard_Integer BOPTools_Set::NbShapes()const //======================================================================= BOPTools_Set& BOPTools_Set::Assign(const BOPTools_Set& theOther) { - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // myShape=theOther.myShape; myNbShapes=theOther.myNbShapes; @@ -131,8 +131,8 @@ Standard_Boolean BOPTools_Set::IsEqual return bRet; } // - BOPCol_MapOfShape aM1; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_MapOfShape aM1; + TopTools_ListIteratorOfListOfShape aIt; // aIt.Initialize(myShapes); for (; aIt.More(); aIt.Next()) { @@ -198,7 +198,7 @@ void BOPTools_Set::Add(const TopoDS_Shape& theS, return; } // - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aIt.Initialize(myShapes); for (; aIt.More(); aIt.Next()) { diff --git a/src/BOPTools/BOPTools_Set.hxx b/src/BOPTools/BOPTools_Set.hxx index 331e0724c1..2d1a0dfcf6 100644 --- a/src/BOPTools/BOPTools_Set.hxx +++ b/src/BOPTools/BOPTools_Set.hxx @@ -19,12 +19,12 @@ #include #include -#include -#include +#include #include #include #include #include +#include class TopoDS_Shape; @@ -39,7 +39,7 @@ public: Standard_EXPORT BOPTools_Set(); Standard_EXPORT virtual ~BOPTools_Set(); - Standard_EXPORT BOPTools_Set(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BOPTools_Set(const Handle(NCollection_BaseAllocator)& theAllocator); Standard_EXPORT BOPTools_Set& Assign (const BOPTools_Set& Other); BOPTools_Set& operator = (const BOPTools_Set& Other) @@ -66,8 +66,8 @@ protected: Standard_EXPORT void Clear(); - BOPCol_BaseAllocator myAllocator; - BOPCol_ListOfShape myShapes; + Handle(NCollection_BaseAllocator) myAllocator; + TopTools_ListOfShape myShapes; TopoDS_Shape myShape; Standard_Integer myNbShapes; Standard_Integer mySum; diff --git a/src/BOPTools/BOPTools_ShapeSet.hxx b/src/BOPTools/BOPTools_ShapeSet.hxx index a299e2d2e1..01ff3a2d10 100644 --- a/src/BOPTools/BOPTools_ShapeSet.hxx +++ b/src/BOPTools/BOPTools_ShapeSet.hxx @@ -19,12 +19,12 @@ #include #include -#include -#include -#include -#include -#include +#include #include +#include +#include +#include +#include class TopoDS_Shape; class TopoDS_Edge; @@ -41,13 +41,13 @@ public: BOPTools_ShapeSet(); virtual ~BOPTools_ShapeSet(); - BOPTools_ShapeSet(const BOPCol_BaseAllocator& theAllocator); + BOPTools_ShapeSet(const Handle(NCollection_BaseAllocator)& theAllocator); void SetShape (const TopoDS_Shape& theS); const TopoDS_Shape& Shape() const; - Standard_EXPORT void Add (const BOPCol_ListOfShape& theLS); + Standard_EXPORT void Add (const TopTools_ListOfShape& theLS); void Add (const TopoDS_Shape& theShape); @@ -55,7 +55,7 @@ virtual ~BOPTools_ShapeSet(); void AddEdge (const TopoDS_Edge& theEdge); - Standard_EXPORT void AddEdges (const BOPCol_ListOfShape& theLS); + Standard_EXPORT void AddEdges (const TopTools_ListOfShape& theLS); void AddEdges (const TopoDS_Shape& theFace); @@ -67,7 +67,7 @@ virtual ~BOPTools_ShapeSet(); void Clear(); - void Get (BOPCol_ListOfShape& theLS) const; + void Get (TopTools_ListOfShape& theLS) const; Standard_Boolean Contains (const BOPTools_ShapeSet& theSet) const; @@ -79,7 +79,7 @@ protected: TopoDS_Shape myShape; - BOPCol_MapOfOrientedShape myMap; + TopTools_MapOfOrientedShape myMap; private: diff --git a/src/BOPTools/BOPTools_ShapeSet.lxx b/src/BOPTools/BOPTools_ShapeSet.lxx index 79cb13c998..277fbbceab 100644 --- a/src/BOPTools/BOPTools_ShapeSet.lxx +++ b/src/BOPTools/BOPTools_ShapeSet.lxx @@ -89,9 +89,9 @@ //function : Add //purpose : //======================================================================= - inline void BOPTools_ShapeSet::Add(const BOPCol_ListOfShape& theLS) + inline void BOPTools_ShapeSet::Add(const TopTools_ListOfShape& theLS) { - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aIt.Init(theLS); for (; aIt.More(); aIt.Next()) { @@ -113,9 +113,9 @@ //function : AddEdges //purpose : //======================================================================= - inline void BOPTools_ShapeSet::AddEdges(const BOPCol_ListOfShape& theLS) + inline void BOPTools_ShapeSet::AddEdges(const TopTools_ListOfShape& theLS) { - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListIteratorOfListOfShape aIt; // aIt.Initialize(theLS); for (; aIt.More(); aIt.Next()) { @@ -139,9 +139,9 @@ //function : Get //purpose : //======================================================================= - inline void BOPTools_ShapeSet::Get(BOPCol_ListOfShape& theLS)const + inline void BOPTools_ShapeSet::Get(TopTools_ListOfShape& theLS)const { - BOPCol_MapIteratorOfMapOfOrientedShape aIt; + TopTools_MapIteratorOfMapOfOrientedShape aIt; // aIt.Initialize(myMap); for (; aIt.More(); aIt.Next()) { @@ -156,7 +156,7 @@ inline Standard_Boolean BOPTools_ShapeSet::Contains(const BOPTools_ShapeSet& theOther)const { Standard_Boolean bRet; - BOPCol_MapIteratorOfMapOfOrientedShape aIt; + TopTools_MapIteratorOfMapOfOrientedShape aIt; // aIt.Initialize(theOther.myMap); for (; aIt.More(); aIt.Next()) { @@ -174,7 +174,7 @@ //======================================================================= inline void BOPTools_ShapeSet::Subtract(const BOPTools_ShapeSet& theOther) { - BOPCol_MapIteratorOfMapOfOrientedShape aIt; + TopTools_MapIteratorOfMapOfOrientedShape aIt; // aIt.Initialize(theOther.myMap); for (; aIt.More(); aIt.Next()) { diff --git a/src/BOPTools/FILES b/src/BOPTools/FILES index c608840ea2..e0ca47a87f 100755 --- a/src/BOPTools/FILES +++ b/src/BOPTools/FILES @@ -1,5 +1,3 @@ -BOPTools.cxx -BOPTools.hxx BOPTools_AlgoTools.cxx BOPTools_AlgoTools.hxx BOPTools_AlgoTools2D.cxx @@ -9,17 +7,21 @@ BOPTools_AlgoTools3D.cxx BOPTools_AlgoTools3D.hxx BOPTools_AlgoTools_1.cxx BOPTools_AlgoTools_2.cxx +BOPTools_BoxSelector.hxx +BOPTools_BoxBndTree.hxx BOPTools_ConnexityBlock.hxx BOPTools_CoupleOfShape.hxx BOPTools_DataMapOfShapeSet.hxx BOPTools_EdgeSet.cxx BOPTools_EdgeSet.hxx BOPTools_EdgeSet.lxx +BOPTools_IndexedDataMapOfSetShape.hxx BOPTools_ListOfConnexityBlock.hxx BOPTools_ListOfCoupleOfShape.hxx BOPTools_ListOfEdgeSet.hxx BOPTools_ListOfShapeSet.hxx BOPTools_MapOfSet.hxx +BOPTools_Parallel.hxx BOPTools_Set.cxx BOPTools_Set.hxx BOPTools_SetMapHasher.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx b/src/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx index 1850e0e7dc..df2d5539f4 100644 --- a/src/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx +++ b/src/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx @@ -19,7 +19,7 @@ #include #include -#include +#include #include #include #include @@ -66,7 +66,7 @@ protected: Standard_EXPORT virtual ~BRepAlgoAPI_Algo(); //! Empty constructor - Standard_EXPORT BRepAlgoAPI_Algo(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT BRepAlgoAPI_Algo(const Handle(NCollection_BaseAllocator)& theAllocator); private: diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx b/src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx index dbddf3dd93..e48bbd5cd8 100644 --- a/src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx +++ b/src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx @@ -500,12 +500,12 @@ const TopTools_ListOfShape& BRepAlgoAPI_BooleanOperation::SectionEdges() BOPDS_VectorOfInterfFF& aFFs=pDS->InterfFF(); myGenerated.Clear(); // - aNb=aFFs.Extent(); + aNb=aFFs.Length(); for (i = 0; i < aNb; i++) { BOPDS_InterfFF& aFFi=aFFs(i); const BOPDS_VectorOfCurve& aSeqOfCurve=aFFi.Curves(); // - aNbCurves=aSeqOfCurve.Extent(); + aNbCurves=aSeqOfCurve.Length(); for (j=0; jInterfFF(); // //section edges - aNbFF=aFFs.Extent(); + aNbFF=aFFs.Length(); for (i = 0; i -#include #include #include #include @@ -23,7 +22,6 @@ #include #include #include -#include #include #include #include @@ -35,11 +33,13 @@ #include #include #include +#include #include #include #include #include #include +#include //======================================================================= //function : @@ -159,7 +159,7 @@ TopoDS_Shape aF, aFOr; TopExp_Explorer aExp; // - BOPTools::MapShapes(thePart, myShapes); + TopExp::MapShapes(thePart, myShapes); } //======================================================================= @@ -201,9 +201,9 @@ return; } // - BOPCol_ListIteratorOfListOfShape aItIm; + TopTools_ListIteratorOfListOfShape aItIm; // - BOPCol_ListOfShape& aLS = myImages.ChangeFind(aArgs1); + TopTools_ListOfShape& aLS = myImages.ChangeFind(aArgs1); aItIm.Initialize(aLS); for (; aItIm.More(); aItIm.Next()) { const TopoDS_Shape& aS = aItIm.Value(); @@ -270,12 +270,12 @@ TopoDS_Edge aSp; TopoDS_Shape aSx; TopExp_Explorer aExp, aExpE; - BOPCol_MapOfShape aME, aMESplit; - BOPCol_ListIteratorOfListOfShape aItIm; + TopTools_MapOfShape aME, aMESplit; + TopTools_ListIteratorOfListOfShape aItIm; BOPDS_MapIteratorOfMapOfPaveBlock aItMPB; - BOPCol_MapIteratorOfMapOfShape aItM; + TopTools_MapIteratorOfMapOfShape aItM; BOPTools_MapOfSet aMST; - BOPCol_ListOfShape aLE; + TopTools_ListOfShape aLE; // aItM.Initialize(myShapes); for (; aItM.More(); aItM.Next()) { @@ -296,7 +296,7 @@ const TopoDS_Shape& aS = aSI.Shape(); // if (myImages.IsBound(aS)) { - BOPCol_ListOfShape& aLIm = myImages.ChangeFind(aS); + TopTools_ListOfShape& aLIm = myImages.ChangeFind(aS); aItIm.Initialize(aLIm); for (; aItIm.More(); ) { const TopoDS_Shape& aSIm = aItIm.Value(); @@ -338,12 +338,12 @@ bIsDegenerated=BRep_Tool::Degenerated(aE); bIsClosed=BRep_Tool::IsClosed(aE, aF); if (myImages.IsBound(aE)) { - BOPCol_ListOfShape& aLEIm = myImages.ChangeFind(aE); + TopTools_ListOfShape& aLEIm = myImages.ChangeFind(aE); // bRem = Standard_False; bIm = Standard_False; aME.Clear(); - BOPCol_ListOfShape aLEImNew; + TopTools_ListOfShape aLEImNew; // aItIm.Initialize(aLEIm); for (; aItIm.More(); aItIm.Next()) { @@ -475,10 +475,10 @@ aBF.Perform(); - BOPCol_ListOfShape& aLFIm = myImages.ChangeFind(aF); + TopTools_ListOfShape& aLFIm = myImages.ChangeFind(aF); aLFIm.Clear(); - const BOPCol_ListOfShape& aLFR=aBF.Areas(); + const TopTools_ListOfShape& aLFR=aBF.Areas(); aItIm.Initialize(aLFR); for (; aItIm.More(); aItIm.Next()) { TopoDS_Shape& aFR=aItIm.ChangeValue(); @@ -492,9 +492,9 @@ aSx.Orientation(anOriF); aLFIm.Append(aSx); // - BOPCol_ListOfShape* pLOr = myOrigins.ChangeSeek(aSx); + TopTools_ListOfShape* pLOr = myOrigins.ChangeSeek(aSx); if (!pLOr) { - pLOr = myOrigins.Bound(aSx, BOPCol_ListOfShape()); + pLOr = myOrigins.Bound(aSx, TopTools_ListOfShape()); } pLOr->Append(aF); // @@ -517,8 +517,8 @@ //======================================================================= void BRepFeat_Builder::RebuildEdge(const TopoDS_Shape& theE, const TopoDS_Face& theF, - const BOPCol_MapOfShape& aME, - BOPCol_ListOfShape& aLIm) + const TopTools_MapOfShape& aME, + TopTools_ListOfShape& aLIm) { Standard_Integer nE, nSp, nV1, nV2, nE1, nV, nVx, nVSD; Standard_Integer nV11, nV21; @@ -529,11 +529,11 @@ BOPDS_ShapeInfo aSI; TopoDS_Vertex aV1, aV2; Handle(BOPDS_PaveBlock) aPBNew; - BOPCol_MapOfInteger aMI, aMAdd, aMV, aMVOr; + TColStd_MapOfInteger aMI, aMAdd, aMV, aMVOr; BOPDS_ListIteratorOfListOfPaveBlock aItPB; - BOPCol_ListIteratorOfListOfShape aIt; - BOPCol_ListIteratorOfListOfInteger aItLI; - BOPCol_MapIteratorOfMapOfShape aItM; + TopTools_ListIteratorOfListOfShape aIt; + TColStd_ListIteratorOfListOfInteger aItLI; + TopTools_MapIteratorOfMapOfShape aItM; BOPDS_MapOfPaveBlock aMPB; BOPDS_MapIteratorOfMapOfPaveBlock aItMPB; // @@ -542,7 +542,7 @@ //1. collect origin vertices to aMV map. nE = myDS->Index(theE); const BOPDS_ShapeInfo& aSIE = myDS->ShapeInfo(nE); - const BOPCol_ListOfInteger& aLS = aSIE.SubShapes(); + const TColStd_ListOfInteger& aLS = aSIE.SubShapes(); aItLI.Initialize(aLS); for(; aItLI.More(); aItLI.Next()) { nV = aItLI.Value(); @@ -668,16 +668,16 @@ void BRepFeat_Builder::CheckSolidImages() { BOPTools_MapOfSet aMST; - BOPCol_ListOfShape aLSImNew; - BOPCol_MapOfShape aMS; - BOPCol_ListIteratorOfListOfShape aIt; + TopTools_ListOfShape aLSImNew; + TopTools_MapOfShape aMS; + TopTools_ListIteratorOfListOfShape aIt; TopExp_Explorer aExp, aExpF; Standard_Boolean bFlagSD; // const TopoDS_Shape& aArgs0=myArguments.First(); const TopoDS_Shape& aArgs1=myTools.First(); // - const BOPCol_ListOfShape& aLSIm = myImages.Find(aArgs1); + const TopTools_ListOfShape& aLSIm = myImages.Find(aArgs1); aIt.Initialize(aLSIm); for(;aIt.More();aIt.Next()) { const TopoDS_Shape& aSolIm = aIt.Value(); @@ -691,7 +691,7 @@ for(; aExp.More(); aExp.Next()) { const TopoDS_Shape& aSolid = aExp.Current(); if (myImages.IsBound(aSolid)) { - BOPCol_ListOfShape& aLSImSol = myImages.ChangeFind(aSolid); + TopTools_ListOfShape& aLSImSol = myImages.ChangeFind(aSolid); aIt.Initialize(aLSImSol); for(;aIt.More();aIt.Next()) { const TopoDS_Shape& aSolIm = aIt.Value(); @@ -718,7 +718,7 @@ //purpose : //======================================================================= void BRepFeat_Builder::FillRemoved(const TopoDS_Shape& S, - BOPCol_MapOfShape& M) + TopTools_MapOfShape& M) { if (myShapes.Contains(S)) { return; @@ -736,8 +736,8 @@ //function : FillIn3DParts //purpose : //======================================================================= - void BRepFeat_Builder::FillIn3DParts(BOPCol_DataMapOfShapeListOfShape& theInParts, - BOPCol_DataMapOfShapeShape& theDraftSolids, + void BRepFeat_Builder::FillIn3DParts(TopTools_DataMapOfShapeListOfShape& theInParts, + TopTools_DataMapOfShapeShape& theDraftSolids, const Handle(NCollection_BaseAllocator)& theAllocator) { GetReport()->Clear(); @@ -750,16 +750,16 @@ BRep_Builder aBB; TopoDS_Solid aSolidSp; TopoDS_Face aFP; - BOPCol_ListIteratorOfListOfShape aItS, aItFP, aItEx; - BOPCol_MapIteratorOfMapOfShape aItMS, aItMS1; + TopTools_ListIteratorOfListOfShape aItS, aItFP, aItEx; + TopTools_MapIteratorOfMapOfShape aItMS, aItMS1; // - BOPCol_ListOfShape aLIF(theAllocator); - BOPCol_MapOfShape aMFDone(100, theAllocator); - BOPCol_MapOfShape aMSolids(100, theAllocator); - BOPCol_MapOfShape aMFaces(100, theAllocator); - BOPCol_MapOfShape aMFIN(100, theAllocator); - BOPCol_IndexedMapOfShape aMS(100, theAllocator); - BOPCol_IndexedDataMapOfShapeListOfShape aMEF(100, theAllocator); + TopTools_ListOfShape aLIF(theAllocator); + TopTools_MapOfShape aMFDone(100, theAllocator); + TopTools_MapOfShape aMSolids(100, theAllocator); + TopTools_MapOfShape aMFaces(100, theAllocator); + TopTools_MapOfShape aMFIN(100, theAllocator); + TopTools_IndexedMapOfShape aMS(100, theAllocator); + TopTools_IndexedDataMapOfShapeListOfShape aMEF(100, theAllocator); // theDraftSolids.Clear(); // @@ -778,7 +778,7 @@ case TopAbs_FACE: { // all faces (originals or images) if (myImages.IsBound(aS)) { - const BOPCol_ListOfShape& aLS=myImages.Find(aS); + const TopTools_ListOfShape& aLS=myImages.Find(aS); aItS.Initialize(aLS); for (; aItS.More(); aItS.Next()) { const TopoDS_Shape& aFx=aItS.Value(); @@ -825,37 +825,37 @@ if (myImages.IsBound(aShell)) { bHasImage=Standard_True; // - const BOPCol_ListOfShape& aLS=myImages.Find(aShell); + const TopTools_ListOfShape& aLS=myImages.Find(aShell); aItS.Initialize(aLS); for (; aItS.More(); aItS.Next()) { const TopoDS_Shape& aSx=aItS.Value(); aMS.Add(aSx); - BOPTools::MapShapes(aSx, TopAbs_FACE, aMS); - BOPTools::MapShapes(aSx, TopAbs_EDGE, aMS); - BOPTools::MapShapesAndAncestors(aSx, TopAbs_EDGE, TopAbs_FACE, aMEF); + TopExp::MapShapes(aSx, TopAbs_FACE, aMS); + TopExp::MapShapes(aSx, TopAbs_EDGE, aMS); + TopExp::MapShapesAndAncestors(aSx, TopAbs_EDGE, TopAbs_FACE, aMEF); } } else { //aMS.Add(aShell); - BOPTools::MapShapes(aShell, TopAbs_FACE, aMS); - BOPTools::MapShapesAndAncestors(aShell, TopAbs_EDGE, TopAbs_FACE, aMEF); + TopExp::MapShapes(aShell, TopAbs_FACE, aMS); + TopExp::MapShapesAndAncestors(aShell, TopAbs_EDGE, TopAbs_FACE, aMEF); } } // // 2 all faces that are not from aSolid [ aLFP1 ] - BOPCol_IndexedDataMapOfShapeListOfShape aMEFP(100, theAllocator); - BOPCol_ListOfShape aLFP1(theAllocator); - BOPCol_ListOfShape aLFP(theAllocator); - BOPCol_ListOfShape aLCBF(theAllocator); - BOPCol_ListOfShape aLFIN(theAllocator); - BOPCol_ListOfShape aLEx(theAllocator); + TopTools_IndexedDataMapOfShapeListOfShape aMEFP(100, theAllocator); + TopTools_ListOfShape aLFP1(theAllocator); + TopTools_ListOfShape aLFP(theAllocator); + TopTools_ListOfShape aLCBF(theAllocator); + TopTools_ListOfShape aLFIN(theAllocator); + TopTools_ListOfShape aLEx(theAllocator); // // for all non-solid faces build EF map [ aMEFP ] aItMS1.Initialize(aMFaces); for (; aItMS1.More(); aItMS1.Next()) { const TopoDS_Shape& aFace=aItMS1.Value(); if (!aMS.Contains(aFace)) { - BOPTools::MapShapesAndAncestors(aFace, TopAbs_EDGE, TopAbs_FACE, aMEFP); + TopExp::MapShapesAndAncestors(aFace, TopAbs_EDGE, TopAbs_FACE, aMEFP); } } // @@ -868,7 +868,7 @@ const TopoDS_Shape& aE=aMEFP.FindKey(j); // if (aMEF.Contains(aE)) { // !! - const BOPCol_ListOfShape& aLF=aMEFP(j); + const TopTools_ListOfShape& aLF=aMEFP(j); aItFP.Initialize(aLF); for (; aItFP.More(); aItFP.Next()) { const TopoDS_Shape& aF=aItFP.Value(); @@ -885,7 +885,7 @@ aItEx.Initialize(aLEx); for (; aItEx.More(); aItEx.Next()) { const TopoDS_Shape& aE=aItEx.Value(); - const BOPCol_ListOfShape& aLF=aMEFP.FindFromKey(aE); + const TopTools_ListOfShape& aLF=aMEFP.FindFromKey(aE); aItFP.Initialize(aLF); for (; aItFP.More(); aItFP.Next()) { const TopoDS_Shape& aF=aItFP.Value(); diff --git a/src/BRepFeat/BRepFeat_Builder.hxx b/src/BRepFeat/BRepFeat_Builder.hxx index e0ca2bd53b..383bff4114 100644 --- a/src/BRepFeat/BRepFeat_Builder.hxx +++ b/src/BRepFeat/BRepFeat_Builder.hxx @@ -20,15 +20,14 @@ #include #include -#include -#include #include +#include #include +#include +#include +#include #include -#include -#include -#include -#include +#include class TopoDS_Shape; class TopoDS_Face; @@ -96,7 +95,7 @@ Standard_EXPORT virtual ~BRepFeat_Builder(); Standard_EXPORT void RebuildFaces(); //! Rebuilds edges in accordance with the kept parts of the tool. - Standard_EXPORT void RebuildEdge (const TopoDS_Shape& theE, const TopoDS_Face& theF, const BOPCol_MapOfShape& theME, BOPCol_ListOfShape& aLEIm); + Standard_EXPORT void RebuildEdge (const TopoDS_Shape& theE, const TopoDS_Face& theF, const TopTools_MapOfShape& theME, TopTools_ListOfShape& aLEIm); //! Collects the images of the object, that contains in //! the images of the tool. @@ -106,7 +105,7 @@ Standard_EXPORT virtual ~BRepFeat_Builder(); Standard_EXPORT void FillRemoved(); //! Adds the shape S and its sub-shapes into myRemoved map. - Standard_EXPORT void FillRemoved (const TopoDS_Shape& theS, BOPCol_MapOfShape& theM); + Standard_EXPORT void FillRemoved (const TopoDS_Shape& theS, TopTools_MapOfShape& theM); @@ -118,11 +117,11 @@ protected: Standard_EXPORT virtual void Prepare() Standard_OVERRIDE; //! Function is redefined to avoid the usage of removed faces. - Standard_EXPORT virtual void FillIn3DParts (BOPCol_DataMapOfShapeListOfShape& theInParts, BOPCol_DataMapOfShapeShape& theDraftSolids, const BOPCol_BaseAllocator& theAllocator) Standard_OVERRIDE; + Standard_EXPORT virtual void FillIn3DParts (TopTools_DataMapOfShapeListOfShape& theInParts, TopTools_DataMapOfShapeShape& theDraftSolids, const Handle(NCollection_BaseAllocator)& theAllocator) Standard_OVERRIDE; - BOPCol_MapOfShape myShapes; - BOPCol_MapOfShape myRemoved; + TopTools_MapOfShape myShapes; + TopTools_MapOfShape myRemoved; Standard_Integer myFuse; diff --git a/src/BRepFill/BRepFill_TrimShellCorner.cxx b/src/BRepFill/BRepFill_TrimShellCorner.cxx index 0083bf8e23..e1ad6a8c5b 100644 --- a/src/BRepFill/BRepFill_TrimShellCorner.cxx +++ b/src/BRepFill/BRepFill_TrimShellCorner.cxx @@ -16,8 +16,6 @@ #include #include -#include -#include #include #include #include @@ -266,7 +264,7 @@ void BRepFill_TrimShellCorner::Perform() } BOPAlgo_PaveFiller aPF; - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; aLS.Append(myShape1); aLS.Append(myShape2); aPF.SetArguments(aLS); @@ -279,7 +277,7 @@ void BRepFill_TrimShellCorner::Perform() const BOPDS_PDS& theDS = aPF.PDS(); // BOPDS_VectorOfInterfFF& aFFs = theDS->InterfFF(); - Standard_Integer aNbFFs = aFFs.Extent(); + Standard_Integer aNbFFs = aFFs.Length(); if(!SplitUEdges(myUEdges, theDS, myHistMap)) { return; @@ -300,9 +298,9 @@ void BRepFill_TrimShellCorner::Perform() aFFi.Indices(nF1, nF2); // BOPDS_VectorOfPoint& aVP=aFFi.ChangePoints(); - aNbP=aVP.Extent(); + aNbP=aVP.Length(); const BOPDS_VectorOfCurve& aVC=aFFi.Curves(); - aNbC=aVC.Extent(); + aNbC=aVC.Length(); if (!aNbP && !aNbC) { if (!theDS->HasInterfSubShapes(nF1, nF2)) { continue; @@ -1070,7 +1068,7 @@ Standard_Boolean SplitUEdges(const Handle(TopTools_HArray2OfShape)& theUEdge Standard_Integer vindex1 = theDS->Index(V1); Standard_Integer vindex2 = theDS->Index(V2); Standard_Integer vvit = 0; - Standard_Integer aNbVVs = aVVs.Extent(); + Standard_Integer aNbVVs = aVVs.Length(); for(vvit = 0; !bvertexfound && (vvit < aNbVVs); vvit++) { //const BOPTools_VVInterference& aVV = aVVs(vvit); @@ -1169,7 +1167,7 @@ Standard_Boolean FindCommonVertex(const BOPDS_PDS& theDS, Standard_Integer eeit = 0; Standard_Integer aNbEEs; - aNbEEs = aEEs.Extent(); + aNbEEs = aEEs.Length(); for(eeit = 0; eeit < aNbEEs; ++eeit) { const BOPDS_InterfEE& aEE = aEEs(eeit); @@ -2123,7 +2121,7 @@ Standard_Boolean FilterSectionEdges(const BOPDS_VectorOfCurve& theBCurves, BRep_Builder aBB; aBB.MakeCompound(theResult); - Standard_Integer aNbCurves = theBCurves.Extent(); + Standard_Integer aNbCurves = theBCurves.Length(); Standard_Integer cit = 0; BOPDS_ListIteratorOfListOfPaveBlock aPBIt; diff --git a/src/BRepOffset/BRepOffset_Inter2d.cxx b/src/BRepOffset/BRepOffset_Inter2d.cxx index 778e7d97bd..e12dd8233e 100644 --- a/src/BRepOffset/BRepOffset_Inter2d.cxx +++ b/src/BRepOffset/BRepOffset_Inter2d.cxx @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -76,8 +77,6 @@ #include #include #include -#include -#include #include #ifdef DRAW @@ -1702,7 +1701,7 @@ void BRepOffset_Inter2d::ConnexIntByIntInVert static void MakeChain(const TopoDS_Shape& theV, const TopTools_IndexedDataMapOfShapeListOfShape& theDMVV, TopTools_MapOfShape& theMDone, - BOPCol_ListOfShape& theChain) + TopTools_ListOfShape& theChain) { if (theMDone.Add(theV)) { theChain.Append(theV); @@ -1730,7 +1729,7 @@ void BRepOffset_Inter2d::FuseVertices(const TopTools_IndexedDataMapOfShapeListOf const TopoDS_Vertex& aV = TopoDS::Vertex(theDMVV.FindKey(i)); // // find chain of vertices - BOPCol_ListOfShape aLVChain; + TopTools_ListOfShape aLVChain; MakeChain(aV, theDMVV, aMVDone, aLVChain); // if (aLVChain.Extent() < 2) { @@ -1743,7 +1742,7 @@ void BRepOffset_Inter2d::FuseVertices(const TopTools_IndexedDataMapOfShapeListOf // TopoDS_Vertex aVNewInt = TopoDS::Vertex(aVNew.Oriented(TopAbs_INTERNAL)); // - BOPCol_ListIteratorOfListOfShape aIt(aLVChain); + TopTools_ListIteratorOfListOfShape aIt(aLVChain); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aVOld = aIt.Value(); // update the parameters on edges diff --git a/src/BRepOffset/BRepOffset_Inter3d.cxx b/src/BRepOffset/BRepOffset_Inter3d.cxx index 8309b18dcf..269fbdf57d 100644 --- a/src/BRepOffset/BRepOffset_Inter3d.cxx +++ b/src/BRepOffset/BRepOffset_Inter3d.cxx @@ -46,7 +46,7 @@ #include // #include -#include +#include #include // #include @@ -165,7 +165,7 @@ void BRepOffset_Inter3d::CompletInt(const TopTools_ListOfShape& SetOfFaces, //--------------------------------------------------------------- // Prepare tools for sorting the bounding boxes - BOPCol_BoxBndTree aBBTree; + BOPTools_BoxBndTree aBBTree; NCollection_UBTreeFiller aTreeFiller(aBBTree); // NCollection_IndexedDataMap aMFaces; @@ -192,12 +192,12 @@ void BRepOffset_Inter3d::CompletInt(const TopTools_ListOfShape& SetOfFaces, const TopoDS_Face& aF1 = TopoDS::Face(aItL.Value()); const Bnd_Box& aBoxF1 = aMFaces.FindFromKey(aF1); // - BOPCol_BoxBndTreeSelector aSelector; + BOPTools_BoxBndTreeSelector aSelector; aSelector.SetBox(aBoxF1); aBBTree.Select(aSelector); // - const BOPCol_ListOfInteger& aLI = aSelector.Indices(); - BOPCol_ListIteratorOfListOfInteger aItLI(aLI); + const TColStd_ListOfInteger& aLI = aSelector.Indices(); + TColStd_ListIteratorOfListOfInteger aItLI(aLI); for (; aItLI.More(); aItLI.Next()) { Standard_Integer i = aItLI.Value(); const TopoDS_Face& aF2 = TopoDS::Face(aMFaces.FindKey(i)); diff --git a/src/BRepOffset/BRepOffset_MakeOffset.cxx b/src/BRepOffset/BRepOffset_MakeOffset.cxx index 8ce2fc0312..3ae17a9035 100644 --- a/src/BRepOffset/BRepOffset_MakeOffset.cxx +++ b/src/BRepOffset/BRepOffset_MakeOffset.cxx @@ -116,7 +116,6 @@ // #include #include -#include #include // POP for NT @@ -254,7 +253,7 @@ static TopTools_ListOfShape& theLSF); static - Standard_Boolean BuildShellsCompleteInter(const BOPCol_ListOfShape& theLF, + Standard_Boolean BuildShellsCompleteInter(const TopTools_ListOfShape& theLF, BRepAlgo_Image& theImage, TopoDS_Shape& theShells); @@ -2934,7 +2933,7 @@ void BRepOffset_MakeOffset::MakeShells () #endif // // Prepare list of splits of the offset faces to make the shells - BOPCol_ListOfShape aLSF; + TopTools_ListOfShape aLSF; const TopTools_ListOfShape& R = myImageOffset.Roots(); TopTools_ListIteratorOfListOfShape it(R); // @@ -2982,7 +2981,7 @@ void BRepOffset_MakeOffset::MakeShells () // if (!bDone) { BRepTools_Quilt Glue; - BOPCol_ListIteratorOfListOfShape aItLS(aLSF); + TopTools_ListIteratorOfListOfShape aItLS(aLSF); for (; aItLS.More(); aItLS.Next()) { Glue.Add(aItLS.Value()); } @@ -4080,7 +4079,7 @@ void GetEnlargedFaces(const TopoDS_Shape& theShape, // In case there will be more than just one solid, it will be // rebuilt using only outer faces. //======================================================================= -Standard_Boolean BuildShellsCompleteInter(const BOPCol_ListOfShape& theLF, +Standard_Boolean BuildShellsCompleteInter(const TopTools_ListOfShape& theLF, BRepAlgo_Image& theImage, TopoDS_Shape& theShells) { @@ -4155,7 +4154,7 @@ Standard_Boolean BuildShellsCompleteInter(const BOPCol_ListOfShape& theLF, } // // get faces attached to only one solid - BOPCol_ListOfShape aLF(anAllocLoc); + TopTools_ListOfShape aLF(anAllocLoc); for (i = 1; i <= aNb; ++i) { const TopTools_ListOfShape& aLS = aDMFS(i); if (aLS.Extent() == 1) { diff --git a/src/BRepOffset/BRepOffset_MakeOffset_1.cxx b/src/BRepOffset/BRepOffset_MakeOffset_1.cxx index 86d84ad899..6b3feb8bd7 100644 --- a/src/BRepOffset/BRepOffset_MakeOffset_1.cxx +++ b/src/BRepOffset/BRepOffset_MakeOffset_1.cxx @@ -52,11 +52,10 @@ #include #include -#include -#include -#include +#include +#include +#include -#include #include #include #include @@ -483,7 +482,7 @@ static TopTools_DataMapOfShapeListOfShape& theMELF); static - void IntersectEdges(const BOPCol_ListOfShape& theLA, + void IntersectEdges(const TopTools_ListOfShape& theLA, const TopTools_ListOfShape& theLE, const TopTools_MapOfShape& theMVBounds, const TopTools_MapOfShape& theVertsToAvoid, @@ -1173,7 +1172,7 @@ void IntersectTrimmedEdges(const TopTools_ListOfShape& theLF, } // // get edges to intersect from descendants of the offset faces - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; // TopTools_ListIteratorOfListOfShape aItLF(theLF); for (; aItLF.More(); aItLF.Next()) { @@ -1209,7 +1208,7 @@ void IntersectTrimmedEdges(const TopTools_ListOfShape& theLF, // TopTools_ListOfShape aLA; // fill map with edges images - BOPCol_ListIteratorOfListOfShape aIt(aLS); + TopTools_ListIteratorOfListOfShape aIt(aLS); for (; aIt.More(); aIt.Next()) { const TopoDS_Shape& aE = aIt.Value(); const TopTools_ListOfShape& aLEIm = aGFE.Modified(aE); @@ -1351,7 +1350,7 @@ void BuildSplitsOfFace(const TopoDS_Face& theFace, theLFImages.Clear(); // // take edges to split the face - BOPCol_ListOfShape aLE; + TopTools_ListOfShape aLE; TopExp_Explorer aExp(theEdges, TopAbs_EDGE); for (; aExp.More(); aExp.Next()) { TopoDS_Edge aE = TopoDS::Edge(aExp.Current()); @@ -1374,8 +1373,8 @@ void BuildSplitsOfFace(const TopoDS_Face& theFace, aBF.SetShapes(aLE); aBF.Perform(); // - const BOPCol_ListOfShape& aLFSp = aBF.Areas(); - BOPCol_ListIteratorOfListOfShape aItLF(aLFSp); + const TopTools_ListOfShape& aLFSp = aBF.Areas(); + TopTools_ListIteratorOfListOfShape aItLF(aLFSp); for (; aItLF.More(); aItLF.Next()) { TopoDS_Shape& aFSp = aItLF.ChangeValue(); aFSp.Orientation(anOr); @@ -2077,7 +2076,7 @@ void FindFacesInsideHoleWires(const TopoDS_Face& theFOrigin, } // // build new planar face using these edges - BOPCol_ListOfShape aLE; + TopTools_ListOfShape aLE; Standard_Integer i, aNbE = aMEImWire.Extent(); for (i = 1; i <= aNbE; ++i) { aLE.Append(aMEImWire(i).Oriented(TopAbs_FORWARD)); @@ -2089,7 +2088,7 @@ void FindFacesInsideHoleWires(const TopoDS_Face& theFOrigin, aBF.SetShapes(aLE); aBF.Perform(); // - const BOPCol_ListOfShape& aLFNew = aBF.Areas(); + const TopTools_ListOfShape& aLFNew = aBF.Areas(); if (aLFNew.IsEmpty()) { continue; } @@ -2827,7 +2826,7 @@ void RemoveInsideFaces(TopTools_IndexedDataMapOfShapeListOfShape& theFImages, TopTools_IndexedMapOfShape& theMEInside, TopoDS_Shape& theSolids) { - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; TopTools_MapOfShape aMFence; TopTools_IndexedMapOfShape aMFInv; TopTools_ListIteratorOfListOfShape aItLF; @@ -3116,11 +3115,11 @@ void ShapesConnections(const TopTools_IndexedDataMapOfShapeListOfShape& theInvFa const BOPDS_PDS& pDS = theBuilder.PDS(); // analyze all Face/Face intersections const BOPDS_VectorOfInterfFF& aFFs = pDS->InterfFF(); - Standard_Integer iInt, aNbFF = aFFs.Extent(); + Standard_Integer iInt, aNbFF = aFFs.Length(); for (iInt = 0; iInt < aNbFF; ++iInt) { const BOPDS_InterfFF& aFF = aFFs(iInt); const BOPDS_VectorOfCurve& aVNC = aFF.Curves(); - Standard_Integer aNbC = aVNC.Extent(); + Standard_Integer aNbC = aVNC.Length(); if (!aNbC) { continue; } @@ -3260,7 +3259,7 @@ void RemoveHangingParts(const BOPAlgo_MakerVolume& theMV, aBB.MakeCompound(aCFHangs); // Tool for getting the splits of faces - const BOPCol_DataMapOfShapeListOfShape& aMVIms = theMV.Images(); + const TopTools_DataMapOfShapeListOfShape& aMVIms = theMV.Images(); TopTools_ListIteratorOfListOfShape aItLArgs(theMV.Arguments()); for (; aItLArgs.More(); aItLArgs.Next()) @@ -3269,7 +3268,7 @@ void RemoveHangingParts(const BOPAlgo_MakerVolume& theMV, for (; anExpF.More(); anExpF.Next()) { const TopoDS_Shape& aF = anExpF.Current(); - const BOPCol_ListOfShape* pLFIm = aMVIms.Seek(aF); + const TopTools_ListOfShape* pLFIm = aMVIms.Seek(aF); if (pLFIm) { TopTools_ListIteratorOfListOfShape aItLFIm(*pLFIm); @@ -3289,7 +3288,7 @@ void RemoveHangingParts(const BOPAlgo_MakerVolume& theMV, } // Make connexity blocks of all hanging parts and check that they are isolated - BOPCol_ListOfShape aLCBHangs; + TopTools_ListOfShape aLCBHangs; BOPTools_AlgoTools::MakeConnexityBlocks(aCFHangs, TopAbs_EDGE, TopAbs_FACE, aLCBHangs); if (aLCBHangs.IsEmpty()) return; @@ -3312,10 +3311,10 @@ void RemoveHangingParts(const BOPAlgo_MakerVolume& theMV, Standard_Integer i, aNbE = theInvEdges.Extent(); for (i = 1; i <= aNbE; ++i) { const TopoDS_Shape& aEInv = theInvEdges(i); - const BOPCol_ListOfShape *pLEIm = aMVIms.Seek(aEInv); + const TopTools_ListOfShape *pLEIm = aMVIms.Seek(aEInv); if (pLEIm) { - BOPCol_ListIteratorOfListOfShape aItLEIm(*pLEIm); + TopTools_ListIteratorOfListOfShape aItLEIm(*pLEIm); for (; aItLEIm.More(); aItLEIm.Next()) aMEInv.Add(aItLEIm.Value()); } @@ -3324,9 +3323,9 @@ void RemoveHangingParts(const BOPAlgo_MakerVolume& theMV, } // Tool for getting the origins of the splits - const BOPCol_DataMapOfShapeListOfShape& aMVOrs = theMV.Origins(); + const TopTools_DataMapOfShapeListOfShape& aMVOrs = theMV.Origins(); - BOPCol_ListIteratorOfListOfShape aItLCBH(aLCBHangs); + TopTools_ListIteratorOfListOfShape aItLCBH(aLCBHangs); for (; aItLCBH.More(); aItLCBH.Next()) { const TopoDS_Shape& aCBH = aItLCBH.Value(); @@ -3381,7 +3380,7 @@ void RemoveHangingParts(const BOPAlgo_MakerVolume& theMV, } // Check block to be isolated - const BOPCol_ListOfShape* pLFOr = aMVOrs.Seek(aF); + const TopTools_ListOfShape* pLFOr = aMVOrs.Seek(aF); if (pLFOr) { TopTools_ListIteratorOfListOfShape aItLFOr(*pLFOr); @@ -5031,7 +5030,7 @@ void IntersectAndTrimEdges(const TopTools_IndexedDataMapOfShapeListOfShape& theF return; } // - BOPCol_ListOfShape aLArgs; + TopTools_ListOfShape aLArgs; TopTools_MapOfShape aMFence; TopTools_ListIteratorOfListOfShape aIt, aIt1; TopExp_Explorer aExp; @@ -5437,7 +5436,7 @@ void UpdateValidEdges(const TopTools_IndexedDataMapOfShapeListOfShape& theFImage continue; // Get the splits of new edges to intersect - BOPCol_ListOfShape aLSplits; + TopTools_ListOfShape aLSplits; TopTools_ListIteratorOfListOfShape aItLE(aBlockLENew); for (; aItLE.More(); aItLE.Next()) @@ -5477,7 +5476,7 @@ void UpdateValidEdges(const TopTools_IndexedDataMapOfShapeListOfShape& theFImage TopTools_MapOfShape aMEVal; // Blocks of valid edges on the first stage - BOPCol_ListOfShape aLValBlocks; + TopTools_ListOfShape aLValBlocks; // Context for caching the classification tools Handle(IntTools_Context) aCtx = new IntTools_Context; @@ -5827,7 +5826,7 @@ void TrimNewIntersectionEdges(const TopTools_ListOfShape& theLE, //function : IntersectEdges //purpose : Intersecting the trimmed edges to avoid self-intersections //======================================================================= -void IntersectEdges(const BOPCol_ListOfShape& theLA, +void IntersectEdges(const TopTools_ListOfShape& theLA, const TopTools_ListOfShape& theLE, const TopTools_MapOfShape& theMVBounds, const TopTools_MapOfShape& theVertsToAvoid, @@ -5847,7 +5846,7 @@ void IntersectEdges(const BOPCol_ListOfShape& theLA, TopoDS_Compound aSp; BRep_Builder aBB; aBB.MakeCompound(aSp); - BOPCol_ListIteratorOfListOfShape anIt(theLA); + TopTools_ListIteratorOfListOfShape anIt(theLA); for (; anIt.More(); anIt.Next()) { const TopoDS_Shape& aE = anIt.Value(); aBB.Add(aSp, aE); @@ -6093,7 +6092,7 @@ void GetInvalidEdgesByBounds(const TopoDS_Shape& theSplits, // // check edge/edge intersections const BOPDS_VectorOfInterfEE& aEEs = pDS->InterfEE(); - Standard_Integer i, aNb = aEEs.Extent(); + Standard_Integer i, aNb = aEEs.Length(); for (i = 0; i < aNb; ++i) { const BOPDS_InterfEE& aEE = aEEs(i); // @@ -6158,7 +6157,7 @@ void GetInvalidEdgesByBounds(const TopoDS_Shape& theSplits, TopTools_IndexedMapOfShape aMSSec; TopExp::MapShapes(aSecR, aMSSec); // - const BOPCol_DataMapOfShapeListOfShape& anIm = aSec.Images(); + const TopTools_DataMapOfShapeListOfShape& anIm = aSec.Images(); for (TopExp_Explorer aExp(theSplits, TopAbs_EDGE); aExp.More(); aExp.Next()) { const TopoDS_Shape& aE = aExp.Current(); @@ -6167,13 +6166,13 @@ void GetInvalidEdgesByBounds(const TopoDS_Shape& theSplits, continue; } // - const BOPCol_ListOfShape* pLEIm = anIm.Seek(aE); + const TopTools_ListOfShape* pLEIm = anIm.Seek(aE); if (!pLEIm) { // no splits, i.e. completely coincides with some edge from boundary continue; } // - BOPCol_ListIteratorOfListOfShape aItLEIm(*pLEIm); + TopTools_ListIteratorOfListOfShape aItLEIm(*pLEIm); for (; aItLEIm.More(); aItLEIm.Next()) { const TopoDS_Shape& aEIm = aItLEIm.Value(); if (!aMSSec.Contains(aEIm)) { diff --git a/src/BRepOffset/BRepOffset_Tool.cxx b/src/BRepOffset/BRepOffset_Tool.cxx index 717b0c8e41..0dcbcf3ac8 100644 --- a/src/BRepOffset/BRepOffset_Tool.cxx +++ b/src/BRepOffset/BRepOffset_Tool.cxx @@ -831,7 +831,7 @@ static Standard_Boolean IsAutonomVertex(const TopoDS_Shape& aVertex, //check if vertex with index "index" is not created in VV or EE or EF interference //VV BOPDS_VectorOfInterfVV& aVVs=pDS->InterfVV(); - aNbVVs = aVVs.Extent(); + aNbVVs = aVVs.Length(); for(aInt = 0; aInt < aNbVVs; aInt++) { const BOPDS_InterfVV& aVV = aVVs(aInt); if (aVV.HasIndexNew()) { @@ -842,7 +842,7 @@ static Standard_Boolean IsAutonomVertex(const TopoDS_Shape& aVertex, } //EE BOPDS_VectorOfInterfEE& aEEs=pDS->InterfEE(); - aNbEEs = aEEs.Extent(); + aNbEEs = aEEs.Length(); for(aInt = 0; aInt < aNbEEs; aInt++) { const BOPDS_InterfEE& aEE = aEEs(aInt); IntTools_CommonPrt aCP = aEE.CommonPart(); @@ -854,7 +854,7 @@ static Standard_Boolean IsAutonomVertex(const TopoDS_Shape& aVertex, } //EF BOPDS_VectorOfInterfEF& aEFs=pDS->InterfEF(); - aNbEFs = aEFs.Extent(); + aNbEFs = aEFs.Length(); for(aInt = 0; aInt < aNbEFs; aInt++) { const BOPDS_InterfEF& aEF = aEFs(aInt); IntTools_CommonPrt aCP = aEF.CommonPart(); @@ -1338,7 +1338,7 @@ static Standard_Boolean CheckIntersFF(const BOPDS_PDS& pDS, return Standard_True; BOPDS_VectorOfInterfFF& aFFs = pDS->InterfFF(); - Standard_Integer aNb = aFFs.Extent(); + Standard_Integer aNb = aFFs.Length(); Standard_Integer i, j, nbe = 0; TopTools_SequenceOfShape Edges; @@ -1347,7 +1347,7 @@ static Standard_Boolean CheckIntersFF(const BOPDS_PDS& pDS, { BOPDS_InterfFF& aFFi=aFFs(i); const BOPDS_VectorOfCurve& aBCurves=aFFi.Curves(); - Standard_Integer aNbCurves = aBCurves.Extent(); + Standard_Integer aNbCurves = aBCurves.Length(); for (j = 0; j < aNbCurves; ++j) { @@ -1618,7 +1618,7 @@ void BRepOffset_Tool::Inter3D(const TopoDS_Face& F1, BRepLib::BuildCurves3d(cpF2); BOPAlgo_PaveFiller aPF1, aPF2; - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; aLS.Append(cpF1); aLS.Append(cpF2); aPF1.SetArguments(aLS); @@ -1646,7 +1646,7 @@ void BRepOffset_Tool::Inter3D(const TopoDS_Face& F1, const BOPDS_PDS& pDS = pPF->PDS(); BOPDS_VectorOfInterfFF& aFFs=pDS->InterfFF(); - Standard_Integer aNb = aFFs.Extent(); + Standard_Integer aNb = aFFs.Length(); Standard_Integer i = 0, j = 0, k; // Store Result L1.Clear(); L2.Clear(); @@ -1658,7 +1658,7 @@ void BRepOffset_Tool::Inter3D(const TopoDS_Face& F1, BOPDS_InterfFF& aFFi=aFFs(i); const BOPDS_VectorOfCurve& aBCurves=aFFi.Curves(); - Standard_Integer aNbCurves = aBCurves.Extent(); + Standard_Integer aNbCurves = aBCurves.Length(); for (j = 0; j < aNbCurves; j++) { const BOPDS_Curve& aBC=aBCurves(j); diff --git a/src/BRepTest/BRepTest_FilletCommands.cxx b/src/BRepTest/BRepTest_FilletCommands.cxx index d9c27372c5..30befd0ad0 100644 --- a/src/BRepTest/BRepTest_FilletCommands.cxx +++ b/src/BRepTest/BRepTest_FilletCommands.cxx @@ -346,7 +346,7 @@ Standard_Integer boptopoblend(Draw_Interpretor& di, Standard_Integer narg, const } BOPAlgo_PaveFiller theDSFiller; - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; aLS.Append(S1); aLS.Append(S2); theDSFiller.SetArguments(aLS); diff --git a/src/BiTgte/BiTgte_Blend.cxx b/src/BiTgte/BiTgte_Blend.cxx index bc521096ff..b15363fb70 100644 --- a/src/BiTgte/BiTgte_Blend.cxx +++ b/src/BiTgte/BiTgte_Blend.cxx @@ -20,7 +20,6 @@ #include #include #include -#include #include #include #include @@ -1491,7 +1490,7 @@ void BiTgte_Blend::ComputeCenters() if (myRadius < 0.) Side = TopAbs_OUT; BRepOffset_Inter3d Inter(myAsDes,Side,myTol); - BiTgte_DataMapOfShapeBox MapSBox; + TopTools_DataMapOfShapeBox MapSBox; TopTools_MapOfShape Done; //TopTools_MapIteratorOfMapOfShape it; @@ -2574,7 +2573,7 @@ void BiTgte_Blend::ComputeShape() Standard_Boolean BiTgte_Blend::Intersect (const TopoDS_Shape& Init, const TopoDS_Face& Face, - const BiTgte_DataMapOfShapeBox& MapSBox, + const TopTools_DataMapOfShapeBox& MapSBox, const BRepOffset_Offset& OF1, BRepOffset_Inter3d& Inter) { diff --git a/src/BiTgte/BiTgte_Blend.hxx b/src/BiTgte/BiTgte_Blend.hxx index 5759900389..be9bacdbcd 100644 --- a/src/BiTgte/BiTgte_Blend.hxx +++ b/src/BiTgte/BiTgte_Blend.hxx @@ -36,7 +36,7 @@ #include #include #include -#include +#include class BRepAlgo_AsDes; class StdFail_NotDone; class Standard_OutOfRange; @@ -190,7 +190,7 @@ private: //! Computes the intersections with and all the //! OffsetFaces stored in . Returns //! if an intersections ends on a boundary of a Face. - Standard_EXPORT Standard_Boolean Intersect (const TopoDS_Shape& Init, const TopoDS_Face& Face, const BiTgte_DataMapOfShapeBox& MapSBox, const BRepOffset_Offset& OF1, BRepOffset_Inter3d& Inter); + Standard_EXPORT Standard_Boolean Intersect (const TopoDS_Shape& Init, const TopoDS_Face& Face, const TopTools_DataMapOfShapeBox& MapSBox, const BRepOffset_Offset& OF1, BRepOffset_Inter3d& Inter); Standard_Real myRadius; diff --git a/src/BiTgte/BiTgte_DataMapIteratorOfDataMapOfShapeBox.hxx b/src/BiTgte/BiTgte_DataMapIteratorOfDataMapOfShapeBox.hxx deleted file mode 100644 index 69bee91d46..0000000000 --- a/src/BiTgte/BiTgte_DataMapIteratorOfDataMapOfShapeBox.hxx +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2015 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. - - -#ifndef BiTgte_DataMapIteratorOfDataMapOfShapeBox_HeaderFile -#define BiTgte_DataMapIteratorOfDataMapOfShapeBox_HeaderFile - -#include - -#endif diff --git a/src/BiTgte/BiTgte_DataMapOfShapeBox.hxx b/src/BiTgte/BiTgte_DataMapOfShapeBox.hxx deleted file mode 100644 index 01edd39eae..0000000000 --- a/src/BiTgte/BiTgte_DataMapOfShapeBox.hxx +++ /dev/null @@ -1,29 +0,0 @@ -// Created on: 1996-12-16 -// Created by: Bruno DUMORTIER -// Copyright (c) 1996-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. - -#ifndef BiTgte_DataMapOfShapeBox_HeaderFile -#define BiTgte_DataMapOfShapeBox_HeaderFile - -#include -#include -#include -#include - -typedef NCollection_DataMap BiTgte_DataMapOfShapeBox; -typedef NCollection_DataMap::Iterator BiTgte_DataMapIteratorOfDataMapOfShapeBox; - - -#endif diff --git a/src/BiTgte/FILES b/src/BiTgte/FILES index c76474891e..09c5167eb7 100644 --- a/src/BiTgte/FILES +++ b/src/BiTgte/FILES @@ -5,8 +5,6 @@ BiTgte_CurveOnEdge.cxx BiTgte_CurveOnEdge.hxx BiTgte_CurveOnVertex.cxx BiTgte_CurveOnVertex.hxx -BiTgte_DataMapIteratorOfDataMapOfShapeBox.hxx -BiTgte_DataMapOfShapeBox.hxx BiTgte_HCurveOnEdge.hxx BiTgte_HCurveOnEdge_0.cxx BiTgte_HCurveOnVertex.hxx diff --git a/src/IntTools/FILES b/src/IntTools/FILES index e5290ffb49..4dc8a6d44d 100644 --- a/src/IntTools/FILES +++ b/src/IntTools/FILES @@ -41,7 +41,6 @@ IntTools_FaceFace.cxx IntTools_FaceFace.hxx IntTools_FClass2d.cxx IntTools_FClass2d.hxx -IntTools_IndexedDataMapOfTransientAddress.hxx IntTools_ListIteratorOfListOfBox.hxx IntTools_ListIteratorOfListOfCurveRangeSample.hxx IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx diff --git a/src/IntTools/IntTools_Context.cxx b/src/IntTools/IntTools_Context.cxx index 903a0e38f9..8bb615beba 100644 --- a/src/IntTools/IntTools_Context.cxx +++ b/src/IntTools/IntTools_Context.cxx @@ -97,8 +97,8 @@ IntTools_Context::IntTools_Context IntTools_Context::~IntTools_Context() { Standard_Address anAdr; - BOPCol_DataMapIteratorOfDataMapOfShapeAddress aIt; - BOPCol_DataMapIteratorOfDataMapOfTransientAddress aIt1; + DataMapOfShapeAddress::Iterator aIt; + DataMapOfTransientAddress::Iterator aIt1; // IntTools_FClass2d* pFClass2d; // @@ -1091,7 +1091,7 @@ void IntTools_Context::SetPOnSProjectionTolerance(const Standard_Real theValue) void IntTools_Context::clearCachedPOnSProjectors() { GeomAPI_ProjectPointOnSurf* pProjPS; - BOPCol_DataMapIteratorOfDataMapOfShapeAddress aIt(myProjPSMap); + DataMapOfShapeAddress::Iterator aIt(myProjPSMap); for (; aIt.More(); aIt.Next()) { Standard_Address anAdr=aIt.Value(); pProjPS=(GeomAPI_ProjectPointOnSurf*)anAdr; diff --git a/src/IntTools/IntTools_Context.hxx b/src/IntTools/IntTools_Context.hxx index 0da262e92e..a2f6ca8852 100644 --- a/src/IntTools/IntTools_Context.hxx +++ b/src/IntTools/IntTools_Context.hxx @@ -18,9 +18,9 @@ #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -28,6 +28,7 @@ #include #include #include +#include class IntTools_FClass2d; class TopoDS_Face; class GeomAPI_ProjectPointOnSurf; @@ -45,7 +46,6 @@ class IntTools_Curve; class Bnd_Box; class TopoDS_Shape; - //! The intersection Context contains geometrical //! and topological toolkit (classifiers, projectors, etc). //! The intersection Context is for caching the tools @@ -58,7 +58,7 @@ public: Standard_EXPORT IntTools_Context(); Standard_EXPORT virtual ~IntTools_Context(); - Standard_EXPORT IntTools_Context(const BOPCol_BaseAllocator& theAllocator); + Standard_EXPORT IntTools_Context(const Handle(NCollection_BaseAllocator)& theAllocator); //! Returns a reference to point classifier @@ -239,17 +239,23 @@ Standard_EXPORT virtual ~IntTools_Context(); protected: + typedef NCollection_DataMap DataMapOfShapeAddress; + typedef NCollection_DataMap DataMapOfTransientAddress; - BOPCol_BaseAllocator myAllocator; - BOPCol_DataMapOfShapeAddress myFClass2dMap; - BOPCol_DataMapOfShapeAddress myProjPSMap; - BOPCol_DataMapOfShapeAddress myProjPCMap; - BOPCol_DataMapOfShapeAddress mySClassMap; - BOPCol_DataMapOfTransientAddress myProjPTMap; - BOPCol_DataMapOfShapeAddress myHatcherMap; - BOPCol_DataMapOfShapeAddress myProjSDataMap; - BOPCol_DataMapOfShapeAddress myBndBoxDataMap; - BOPCol_DataMapOfShapeAddress mySurfAdaptorMap; + Handle(NCollection_BaseAllocator) myAllocator; + DataMapOfShapeAddress myFClass2dMap; + DataMapOfShapeAddress myProjPSMap; + DataMapOfShapeAddress myProjPCMap; + DataMapOfShapeAddress mySClassMap; + DataMapOfTransientAddress myProjPTMap; + DataMapOfShapeAddress myHatcherMap; + DataMapOfShapeAddress myProjSDataMap; + DataMapOfShapeAddress myBndBoxDataMap; + DataMapOfShapeAddress mySurfAdaptorMap; Standard_Integer myCreateFlag; Standard_Real myPOnSTolerance; diff --git a/src/IntTools/IntTools_EdgeEdge.cxx b/src/IntTools/IntTools_EdgeEdge.cxx index 15e27e5a30..38c36465d7 100644 --- a/src/IntTools/IntTools_EdgeEdge.cxx +++ b/src/IntTools/IntTools_EdgeEdge.cxx @@ -15,7 +15,7 @@ #include #include -#include +#include #include #include #include @@ -614,7 +614,7 @@ void IntTools_EdgeEdge::MergeSolutions(const IntTools_SequenceOfRanges& theRange Standard_Real aTi11, aTi12, aTi21, aTi22; Standard_Real aTj11, aTj12, aTj21, aTj22; Standard_Real aRes1, aRes2, dTR1, dTR2; - BOPCol_MapOfInteger aMI; + TColStd_MapOfInteger aMI; // aRes1 = Resolution(myCurve1.Curve().Curve(), myCurve1.GetType(), myResCoeff1, myTol); diff --git a/src/IntTools/IntTools_IndexedDataMapOfTransientAddress.hxx b/src/IntTools/IntTools_IndexedDataMapOfTransientAddress.hxx deleted file mode 100644 index 6095cbcccd..0000000000 --- a/src/IntTools/IntTools_IndexedDataMapOfTransientAddress.hxx +++ /dev/null @@ -1,27 +0,0 @@ -// Created on: 2000-05-18 -// Created by: Peter KURNEV -// Copyright (c) 2000-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. - -#ifndef IntTools_IndexedDataMapOfTransientAddress_HeaderFile -#define IntTools_IndexedDataMapOfTransientAddress_HeaderFile - -#include -#include -#include -#include - -typedef NCollection_IndexedDataMap IntTools_IndexedDataMapOfTransientAddress; - - -#endif diff --git a/src/NCollection/NCollection_Vector.hxx b/src/NCollection/NCollection_Vector.hxx index 410d4db565..b54df7efd5 100755 --- a/src/NCollection/NCollection_Vector.hxx +++ b/src/NCollection/NCollection_Vector.hxx @@ -225,6 +225,13 @@ public: //! @name public methods return anAppended; } + //! Appends an empty value and returns the reference to it + TheItemType& Appended () + { + TheItemType& anAppended = *(TheItemType* )expandV (myLength); + return anAppended; + } + //! Operator() - query the const value const TheItemType& operator() (const Standard_Integer theIndex) const { diff --git a/src/QABugs/QABugs_19.cxx b/src/QABugs/QABugs_19.cxx index ab17d6ac57..9484db55bd 100644 --- a/src/QABugs/QABugs_19.cxx +++ b/src/QABugs/QABugs_19.cxx @@ -2337,8 +2337,8 @@ static Standard_Integer OCC25043 (Draw_Interpretor& theDI, for (; anCheckIter.More(); anCheckIter.Next()) { const BOPAlgo_CheckResult& aCurCheckRes = anCheckIter.Value(); - const BOPCol_ListOfShape& aCurFaultyShapes = aCurCheckRes.GetFaultyShapes1(); - BOPCol_ListIteratorOfListOfShape aFaultyIter(aCurFaultyShapes); + const TopTools_ListOfShape& aCurFaultyShapes = aCurCheckRes.GetFaultyShapes1(); + TopTools_ListIteratorOfListOfShape aFaultyIter(aCurFaultyShapes); for (; aFaultyIter.More(); aFaultyIter.Next()) { const TopoDS_Shape& aFaultyShape = aFaultyIter.Value(); @@ -2716,10 +2716,8 @@ static Standard_Integer OCC25413 (Draw_Interpretor& di, Standard_Integer narg , #include #include // -#include -// -#include -#include +#include +#include //======================================================================= //function : OCC25446 //purpose : @@ -2756,7 +2754,7 @@ static Standard_Integer OCC25446 (Draw_Interpretor& theDI, aOp = (BOPAlgo_Operation)iOp; // Standard_Integer iErr; - BOPCol_ListOfShape aLS; + TopTools_ListOfShape aLS; BOPAlgo_PaveFiller aPF; // aLS.Append(aS1); @@ -2801,14 +2799,14 @@ static Standard_Integer OCC25446 (Draw_Interpretor& theDI, const TopoDS_Shape& aRes = pBuilder->Shape(); DBRep::Set(argv[1], aRes); // - BOPCol_MapOfShape aMapArgs, aMapShape; - BOPCol_MapIteratorOfMapOfShape aIt; + TopTools_MapOfShape aMapArgs, aMapShape; + TopTools_MapIteratorOfMapOfShape aIt; Standard_Boolean bIsDeletedHist, bIsDeletedMap; TopAbs_ShapeEnum aType; // - BOPTools::MapShapes(aS1, aMapArgs); - BOPTools::MapShapes(aS2, aMapArgs); - BOPTools::MapShapes(aRes, aMapShape); + TopExp::MapShapes(aS1, aMapArgs); + TopExp::MapShapes(aS2, aMapArgs); + TopExp::MapShapes(aRes, aMapShape); // aIt.Initialize(aMapArgs); for (; aIt.More(); aIt.Next()) { diff --git a/src/TKBO/PACKAGES b/src/TKBO/PACKAGES index 8325b04277..b9e3fcc9a7 100755 --- a/src/TKBO/PACKAGES +++ b/src/TKBO/PACKAGES @@ -1,6 +1,5 @@ IntTools BRepAlgoAPI -BOPCol BOPDS BOPAlgo BOPTools diff --git a/src/TopExp/TopExp.cxx b/src/TopExp/TopExp.cxx index b011b50c7c..58dc97ce32 100644 --- a/src/TopExp/TopExp.cxx +++ b/src/TopExp/TopExp.cxx @@ -62,6 +62,18 @@ void TopExp::MapShapes(const TopoDS_Shape& S, } } +//======================================================================= +//function : MapShapes +//purpose : +//======================================================================= +void TopExp::MapShapes(const TopoDS_Shape& S, + TopTools_MapOfShape& M) +{ + M.Add(S); + for (TopoDS_Iterator it(S); it.More(); it.Next()) + MapShapes(it.Value(), M); +} + //======================================================================= //function : MapShapesAndAncestors //purpose : diff --git a/src/TopExp/TopExp.hxx b/src/TopExp/TopExp.hxx index ff02ca121b..e6e515e387 100644 --- a/src/TopExp/TopExp.hxx +++ b/src/TopExp/TopExp.hxx @@ -24,6 +24,7 @@ #include #include #include +#include #include class TopoDS_Shape; class TopoDS_Vertex; @@ -58,7 +59,10 @@ public: //! Stores in the map all the sub-shapes of . Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, TopTools_IndexedMapOfShape& M); - + + //! Stores in the map all the sub-shapes of . + Standard_EXPORT static void MapShapes (const TopoDS_Shape& S, TopTools_MapOfShape& M); + //! Stores in the map all the subshape of of //! type for each one append to the list all //! the ancestors of type . For example map all diff --git a/src/TopTools/FILES b/src/TopTools/FILES index 0a9d20a8c6..9aa32c899b 100644 --- a/src/TopTools/FILES +++ b/src/TopTools/FILES @@ -17,6 +17,7 @@ TopTools_DataMapOfIntegerListOfShape.hxx TopTools_DataMapOfIntegerShape.hxx TopTools_DataMapOfOrientedShapeInteger.hxx TopTools_DataMapOfOrientedShapeShape.hxx +TopTools_DataMapOfShapeBox.hxx TopTools_DataMapOfShapeInteger.hxx TopTools_DataMapOfShapeListOfInteger.hxx TopTools_DataMapOfShapeListOfShape.hxx @@ -29,10 +30,12 @@ TopTools_HArray2OfShape.hxx TopTools_HSequenceOfShape.hxx TopTools_IndexedDataMapOfShapeAddress.hxx TopTools_IndexedDataMapOfShapeListOfShape.hxx +TopTools_IndexedDataMapOfShapeReal.hxx TopTools_IndexedDataMapOfShapeShape.hxx TopTools_IndexedMapOfOrientedShape.hxx TopTools_IndexedMapOfShape.hxx TopTools_ListIteratorOfListOfShape.hxx +TopTools_ListOfListOfShape.hxx TopTools_ListOfShape.hxx TopTools_LocationSet.cxx TopTools_LocationSet.hxx diff --git a/src/BOPCol/BOPCol_DataMapOfShapeBox.hxx b/src/TopTools/TopTools_DataMapOfShapeBox.hxx similarity index 79% rename from src/BOPCol/BOPCol_DataMapOfShapeBox.hxx rename to src/TopTools/TopTools_DataMapOfShapeBox.hxx index 1924737456..3c5b6c0216 100644 --- a/src/BOPCol/BOPCol_DataMapOfShapeBox.hxx +++ b/src/TopTools/TopTools_DataMapOfShapeBox.hxx @@ -12,8 +12,8 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#ifndef BOPCol_DataMapOfShapeBox_HeaderFile -#define BOPCol_DataMapOfShapeBox_HeaderFile +#ifndef TopTools_DataMapOfShapeBox_HeaderFile +#define TopTools_DataMapOfShapeBox_HeaderFile #include #include @@ -21,6 +21,7 @@ #include -typedef NCollection_DataMap BOPCol_DataMapOfShapeBox; +typedef NCollection_DataMap TopTools_DataMapOfShapeBox; +typedef TopTools_DataMapOfShapeBox::Iterator TopTools_DataMapIteratorOfDataMapOfShapeBox; #endif diff --git a/src/BOPCol/BOPCol_IndexedDataMapOfShapeReal.hxx b/src/TopTools/TopTools_IndexedDataMapOfShapeReal.hxx similarity index 81% rename from src/BOPCol/BOPCol_IndexedDataMapOfShapeReal.hxx rename to src/TopTools/TopTools_IndexedDataMapOfShapeReal.hxx index 0adcddfb05..14475c7be4 100644 --- a/src/BOPCol/BOPCol_IndexedDataMapOfShapeReal.hxx +++ b/src/TopTools/TopTools_IndexedDataMapOfShapeReal.hxx @@ -12,14 +12,14 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#ifndef BOPCol_IndexedDataMapOfShapeReal_HeaderFile -#define BOPCol_IndexedDataMapOfShapeReal_HeaderFile +#ifndef TopTools_IndexedDataMapOfShapeReal_HeaderFile +#define TopTools_IndexedDataMapOfShapeReal_HeaderFile +#include +#include #include #include - -#include -typedef NCollection_IndexedDataMap BOPCol_IndexedDataMapOfShapeReal; - +typedef NCollection_IndexedDataMap TopTools_IndexedDataMapOfShapeReal; + #endif diff --git a/src/BOPCol/BOPCol_SequenceOfReal.hxx b/src/TopTools/TopTools_ListOfListOfShape.hxx similarity index 66% rename from src/BOPCol/BOPCol_SequenceOfReal.hxx rename to src/TopTools/TopTools_ListOfListOfShape.hxx index fedc689300..c0fa089788 100644 --- a/src/BOPCol/BOPCol_SequenceOfReal.hxx +++ b/src/TopTools/TopTools_ListOfListOfShape.hxx @@ -1,5 +1,5 @@ // Created by: Eugeny MALTCHIKOV -// Copyright (c) 1999-2014 OPEN CASCADE SAS +// Copyright (c) 2017 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // @@ -12,13 +12,13 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#ifndef BOPCol_SequenceOfReal_HeaderFile -#define BOPCol_SequenceOfReal_HeaderFile +#ifndef TopTools_ListOfListOfShape_HeaderFile +#define TopTools_ListOfListOfShape_HeaderFile -#include -#include +#include -typedef NCollection_Sequence BOPCol_SequenceOfReal; +typedef NCollection_List TopTools_ListOfListOfShape; +typedef TopTools_ListOfListOfShape::Iterator TopTools_ListIteratorOfListOfListOfShape; #endif