From 8b956afe8ee9707838020769da14fdd2ce4f47fe Mon Sep 17 00:00:00 2001 From: emv Date: Fri, 17 Mar 2017 11:34:21 +0300 Subject: [PATCH] 0028562: Replacement of old Boolean operations (BRepAlgo) with new ones (BRepAlgoAPI) in BRepAlgo_NormalProjection The usage of the old Boolean operations (implemented in the class BRepAlgo_BooleanOperations) in the BRepAlgo_NormalProjection algorithm has been replaced with the usage of new Boolean operations (implemented in the class BRepAlgoAPI_BooleanOperations). --- src/BRepAlgo/BRepAlgo_NormalProjection.cxx | 45 +++++++++------------- 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/src/BRepAlgo/BRepAlgo_NormalProjection.cxx b/src/BRepAlgo/BRepAlgo_NormalProjection.cxx index 6e676f4194..768ff46899 100644 --- a/src/BRepAlgo/BRepAlgo_NormalProjection.cxx +++ b/src/BRepAlgo/BRepAlgo_NormalProjection.cxx @@ -22,9 +22,9 @@ #include #include #include -#include #include #include +#include #include #include #include @@ -51,7 +51,6 @@ #include #include #include -#include #include #include @@ -479,31 +478,23 @@ void BRepAlgo_NormalProjection::SetDefaultParams() #ifdef OCCT_DEBUG_CHRONO InitChron(chr_booltool); #endif - if(!Degenerated){ - BRepAlgo_BooleanOperations BoolTool; - BoolTool.Shapes2d(Faces->Value(j),prj); - BoolTool.Common(); - Handle(TopOpeBRepBuild_HBuilder) HB; - TopTools_ListOfShape LS; - TopTools_ListIteratorOfListOfShape Iter; - HB = BoolTool.Builder(); - LS.Clear(); - if (HB->IsSplit(prj, TopAbs_IN)) - LS = HB->Splits(prj, TopAbs_IN); - Iter.Initialize(LS); - if(Iter.More()) { -#ifdef OCCT_DEBUG - cout << " BooleanOperations :" << Iter.More()<<" solutions " << endl; -#endif - for(; Iter.More(); Iter.Next()) { - BB.Add(myRes, Iter.Value()); - myAncestorMap.Bind(Iter.Value(), Edges->Value(i)); - myCorresp.Bind(Iter.Value(),Faces->Value(j)); - } - } - - else { - + if (!Degenerated) { + // Perform Boolean COMMON operation to get parts of projected edge + // inside the face + BRepAlgoAPI_Common aCommon(Faces->Value(j), prj); + if (aCommon.IsDone()) { + const TopoDS_Shape& aRC = aCommon.Shape(); + // + TopExp_Explorer aExpE(aRC, TopAbs_EDGE); + for (; aExpE.More(); aExpE.Next()) { + const TopoDS_Shape& aE = aExpE.Current(); + BB.Add(myRes, aE); + myAncestorMap.Bind(aE, Edges->Value(i)); + myCorresp.Bind(aE, Faces->Value(j)); + } + } + else { + // if the common operation has failed, try to classify the part BRepTopAdaptor_FClass2d classifier(TopoDS::Face(Faces->Value(j)), Precision::Confusion()); gp_Pnt2d Puv;