diff --git a/src/BRepAlgo/BRepAlgo_Section.cdl b/src/BRepAlgo/BRepAlgo_Section.cdl index 78eec0fc06..2583354c32 100755 --- a/src/BRepAlgo/BRepAlgo_Section.cdl +++ b/src/BRepAlgo/BRepAlgo_Section.cdl @@ -337,41 +337,6 @@ is -- ancestor face: F is significant only if the returned -- Boolean value equals true. - PCurveOn1(me; E : Shape from TopoDS) - returns Curve from Geom2d; - ---Purpose: Returns the pcurve attached to section edge E, in the - -- parametric space of the first part - -- on which this algorithm has previously performed the - -- computation of a section. - -- Warning - -- - No pcurve is attached to an elementary edge of the - -- resulting section, and the function returns a null - -- handle, unless the function ComputePCurveOn1 - -- or ComputePCurveOn2 was previously used to - -- define this sort of option of computation. - -- - A null handle is also returned if the edge E does - -- not belong to the last computed intersection, that is, - -- if it is not one of the elementary edges of the - -- compound object returned by the function Shape. - - - PCurveOn2(me; E : Shape from TopoDS) - returns Curve from Geom2d; - ---Purpose: Returns the pcurve attached to section edge E, in the - -- parametric space of the second part - -- on which this algorithm has previously performed the - -- computation of a section. - -- Warning - -- - No pcurve is attached to an elementary edge of the - -- resulting section, and the function returns a null - -- handle, unless the function ComputePCurveOn1 - -- or ComputePCurveOn2 was previously used to - -- define this sort of option of computation. - -- - A null handle is also returned if the edge E does - -- not belong to the last computed intersection, that is, - -- if it is not one of the elementary edges of the - -- compound object returned by the function Shape. - InitParameters(me : out) ---Level: Public ---Level: Private diff --git a/src/BRepAlgo/BRepAlgo_Section.cxx b/src/BRepAlgo/BRepAlgo_Section.cxx index b70eb14228..c80dc4704e 100755 --- a/src/BRepAlgo/BRepAlgo_Section.cxx +++ b/src/BRepAlgo/BRepAlgo_Section.cxx @@ -320,51 +320,6 @@ static TopoDS_Shape MakeShape(const Handle(Geom_Surface)& ); return res; } -//======================================================================= -//function : PCurve1 -//purpose : -//======================================================================= - Handle(Geom2d_Curve) BRepAlgo_Section::PCurveOn1(const TopoDS_Shape& E) const -{ - Handle(Geom2d_Curve) PC; - const TopOpeBRepTool_GeomTool& GT = myHBuilder->BuildTool().GetGeomTool(); - if (!GT.CompPC1()) return PC; - - TopoDS_Shape F1,F2; Standard_Integer iC; - Standard_Boolean res = myHBuilder->EdgeCurveAncestors(E,F1,F2,iC); - if ( !res ) return PC; - - const TopoDS_Edge& EE = TopoDS::Edge(E); - const TopoDS_Face& FF = TopoDS::Face(F1); - Standard_Real f,l; PC = BRep_Tool::CurveOnSurface(EE,FF,f,l); - Handle(Geom2d_TrimmedCurve) TC = new Geom2d_TrimmedCurve(PC,f,l); - - return TC; -} - -//======================================================================= -//function : PCurve2 -//purpose : -//======================================================================= - Handle(Geom2d_Curve) BRepAlgo_Section::PCurveOn2(const TopoDS_Shape& E) const -{ - Handle(Geom2d_Curve) PC; - const TopOpeBRepTool_GeomTool& GT = myHBuilder->BuildTool().GetGeomTool(); - if (!GT.CompPC2()) return PC; - - TopoDS_Shape F1,F2; - Standard_Integer iC; - Standard_Boolean res = myHBuilder->EdgeCurveAncestors(E,F1,F2,iC); - if ( !res ) return PC; - - const TopoDS_Edge& EE = TopoDS::Edge(E); - const TopoDS_Face& FF = TopoDS::Face(F2); - Standard_Real f,l; PC = BRep_Tool::CurveOnSurface(EE,FF,f,l); - Handle(Geom2d_TrimmedCurve) TC = new Geom2d_TrimmedCurve(PC,f,l); - - return TC; -} - //======================================================================= //function : InitParameters //purpose : initialize the fields of the class diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Section.cdl b/src/BRepAlgoAPI/BRepAlgoAPI_Section.cdl index c4b03ef820..b5f7a0d77e 100755 --- a/src/BRepAlgoAPI/BRepAlgoAPI_Section.cdl +++ b/src/BRepAlgoAPI/BRepAlgoAPI_Section.cdl @@ -308,31 +308,6 @@ is -- Boolean value before using the ancestor face: F is significant -- only if the returned Boolean value equals true. - PCurveOn1(me; E : Shape from TopoDS) - returns Curve from Geom2d; - ---Level: Public - ---Purpose: returns the PCurve connected to section edge - -- and lying on first part of Section. - -- N.B : PCurve on first part is computed only if Section is performed - -- after setting ComputePCurveOn1(Standard_True). - - PCurveOn2(me; E : Shape from TopoDS) - returns Curve from Geom2d; - ---Level: Public - ---Purpose: returns the PCurve connected to section edge - -- and lying on second part of Section. - -- N.B : PCurve on second part is computed only if Section is performed - -- after setting ComputePCurveOn2(Standard_True). - -- Warning No pcurve is attached to an elementary edge of the - -- resulting section, and the function returns a null - -- handle, unless the function ComputePCurveOn1 or - -- ComputePCurveOn2 was previously used to define - -- this sort of option of computation. - -- - A null handle is also returned if the edge E does - -- not belong to the last computed intersection, that - -- is, if it is not one of the elementary edges of the - -- compound object returned by the function Shape. - InitParameters(me: out) ---Level: Private is private; diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Section.cxx b/src/BRepAlgoAPI/BRepAlgoAPI_Section.cxx index a088e394d4..ab752063e0 100755 --- a/src/BRepAlgoAPI/BRepAlgoAPI_Section.cxx +++ b/src/BRepAlgoAPI/BRepAlgoAPI_Section.cxx @@ -388,56 +388,6 @@ Standard_Boolean BRepAlgoAPI_Section::HasAncestorFaceOn2(const TopoDS_Shape& E,T return aResult; } -//======================================================================= -//function : PCurveOn1 -//purpose : -//======================================================================= -Handle(Geom2d_Curve) BRepAlgoAPI_Section::PCurveOn1(const TopoDS_Shape& E) const -{ - Handle(Geom2d_Curve) aResult; - - if(myComputePCurve1) { - TopoDS_Shape aShape; - - if(HasAncestorFaceOn1(E, aShape)) { - const TopoDS_Edge& anEdge = TopoDS::Edge(E); - const TopoDS_Face& aFace = TopoDS::Face(aShape); - Standard_Real f, l; - aResult = BRep_Tool::CurveOnSurface(anEdge, aFace, f, l); - - if(!aResult->IsKind(STANDARD_TYPE(Geom2d_TrimmedCurve))) { - aResult = new Geom2d_TrimmedCurve(aResult, f, l); - } - } - } - return aResult; -} - -//======================================================================= -//function : PCurveOn2 -//purpose : -//======================================================================= -Handle(Geom2d_Curve) BRepAlgoAPI_Section::PCurveOn2(const TopoDS_Shape& E) const -{ - Handle(Geom2d_Curve) aResult; - - if(myComputePCurve2) { - TopoDS_Shape aShape; - - if(HasAncestorFaceOn2(E, aShape)) { - const TopoDS_Edge& anEdge = TopoDS::Edge(E); - const TopoDS_Face& aFace = TopoDS::Face(aShape); - Standard_Real f, l; - aResult = BRep_Tool::CurveOnSurface(anEdge, aFace, f, l); - - if(!aResult->IsKind(STANDARD_TYPE(Geom2d_TrimmedCurve))) { - aResult = new Geom2d_TrimmedCurve(aResult, f, l); - } - } - } - return aResult; -} - //======================================================================= //function : InitParameters //purpose : @@ -460,18 +410,17 @@ static Standard_Boolean HasAncestorFaces(const BOPAlgo_PPaveFiller& theDSFiller, TopoDS_Shape& F1, TopoDS_Shape& F2) { - Standard_Integer aNb, i, j, nE, nF1, nF2, aNbCurves;; + Standard_Integer aNb, i, j, nE, nF1, nF2, aNbCurves; // const BOPDS_PDS& pDS = theDSFiller->PDS(); BOPDS_VectorOfInterfFF& aFFs=pDS->InterfFF(); // aNb=aFFs.Extent(); - + //section edges for (i = 0; i < aNb; i++) { BOPDS_InterfFF& aFFi=aFFs(i); aFFi.Indices(nF1, nF2); // - //section edges const BOPDS_VectorOfCurve& aSeqOfCurve=aFFi.Curves(); aNbCurves=aSeqOfCurve.Extent(); for (j=0; jSharedEdges(nF1, nF2, aLSE, theDSFiller->Allocator()); - aItLSE.Initialize(aLSE); - for (; aItLSE.More(); aItLSE.Next()) { - nE = aItLSE.Value(); - // - if(E.IsSame(pDS->Shape(nE))) { - F1 = pDS->Shape(nF1); - F2 = pDS->Shape(nF2); - return Standard_True; - } - } } return Standard_False; } diff --git a/tests/bugs/modalg_5/bug23881 b/tests/bugs/modalg_5/bug23881 new file mode 100644 index 0000000000..15ca2a7a74 --- /dev/null +++ b/tests/bugs/modalg_5/bug23881 @@ -0,0 +1,32 @@ +puts "============" +puts "OCC23881" +puts "============" +puts "" +############################################################################ +# BRepAlgoAPI_Section HasAnsectorFaceOn1 returned False on the boundary +############################################################################ + +polyline w1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 +polyline w2 0 1 0 1 1 0 1 2 0 0 2 0 0 1 0 +mkplane f1 w1 +mkplane f2 w2 +sewing s1 0.0001 f1 f2 + +plane pl 0 1 0 0 1 0 +mkface f3 pl + +bsection r s1 f3 + +# check that section edge (r) is the edge from original shape (s1) +compound r s1 c +if { ! [regexp {EDGE\s*:\s*([0-9]+)} [nbshapes s1] str nbedges_s1] || + ! [regexp {EDGE\s*:\s*([0-9]+)} [nbshapes c ] str nbedges_c] } { + error "Could not get number of edges from resulting shapes" +} + +if { $nbedges_s1 != $nbedges_c } { + puts "Error: section does not share common edge with original shape" +} + +renamevar r result +set 2dviewer 0