1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

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).
This commit is contained in:
emv 2017-03-17 11:34:21 +03:00 committed by bugmaster
parent f80842e34c
commit 8b956afe8e

View File

@ -22,9 +22,9 @@
#include <BRepAdaptor_HCurve.hxx>
#include <BRepAdaptor_HSurface.hxx>
#include <BRepAdaptor_Surface.hxx>
#include <BRepAlgo_BooleanOperations.hxx>
#include <BRepAlgo_NormalProjection.hxx>
#include <BRepAlgo_SequenceOfSequenceOfInteger.hxx>
#include <BRepAlgoAPI_Common.hxx>
#include <BRepLib_MakeEdge.hxx>
#include <BRepLib_MakeVertex.hxx>
#include <BRepLib_MakeWire.hxx>
@ -51,7 +51,6 @@
#include <TopoDS.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Shape.hxx>
#include <TopOpeBRepBuild_HBuilder.hxx>
#include <TopTools_HSequenceOfShape.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
@ -480,30 +479,22 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
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));
// 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;