diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx b/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx index e0471429dc..0afa8ad9a4 100644 --- a/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx +++ b/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx @@ -1036,7 +1036,6 @@ Standard_Boolean RefineAngle2D(const TopoDS_Vertex& aV, aLi=new Geom2d_Line(aPV, aDiri); // aGAC2.Load(aLi); - aDomain2.SetValues(aPV, 0., aTolInt, Standard_True); // aGInter.Perform(aGAC1, aDomain1, aGAC2, aDomain2, aTolInt, aTolInt); if (!aGInter.IsDone()) { diff --git a/src/BOPTools/BOPTools_AlgoTools2D.cxx b/src/BOPTools/BOPTools_AlgoTools2D.cxx index e6ea3c6a84..fd0f644792 100644 --- a/src/BOPTools/BOPTools_AlgoTools2D.cxx +++ b/src/BOPTools/BOPTools_AlgoTools2D.cxx @@ -71,6 +71,8 @@ #include #include +#include +#include static Standard_Boolean CheckEdgeLength (const TopoDS_Edge& ); @@ -88,6 +90,8 @@ static Standard_Real& , Standard_Real& , Standard_Boolean& ); +static + Standard_Real MaxToleranceEdge (const TopoDS_Face& ); //======================================================================= //function : BuildPCurveForEdgeOnFace @@ -314,14 +318,36 @@ void BOPTools_AlgoTools2D::AdjustPCurveOnFace u2 = pC2D.X(); v2 = pC2D.Y(); - + // + // du du = 0.; if (aBAS.IsUPeriodic()) { Standard_Real newu; aUPeriod = aBAS.UPeriod(); // IntTools_Tools::AdjustPeriodic(u2, UMin, UMax, aUPeriod, newu, du); + // + if (du==0.) { + if (aBAS.GetType()==GeomAbs_Cylinder) { + Standard_Real aR, dFi, aTol; + // + gp_Cylinder aCylinder=aBAS.Cylinder(); + aR=aCylinder.Radius(); + aTol=MaxToleranceEdge(aF); + dFi=aTol/aR; + if (dFi dFi); + maxcond = (u2 - UMax > dFi); + if (mincond || maxcond) { + du = ( mincond ) ? aUPeriod : -aUPeriod; + } + } + } } + // dv dv = 0.; if (aBAS.IsVPeriodic()) { @@ -779,3 +805,23 @@ Handle(Geom2d_Curve) BRep_Tool_CurveOnSurface return nullPCurve; } +//======================================================================= +//function : MaxToleranceEdge +//purpose : +//======================================================================= +Standard_Real MaxToleranceEdge (const TopoDS_Face& aF) +{ + Standard_Real aTol, aTolMax; + TopExp_Explorer aExp; + // + aTolMax=0.; + aExp.Init(aF, TopAbs_EDGE); + for (; aExp.More(); aExp.Next()) { + const TopoDS_Edge& aE=*((TopoDS_Edge *)&aExp.Current()); + aTol=BRep_Tool::Tolerance(aE); + if (aTol>aTolMax) { + aTolMax=aTol; + } + } + return aTolMax; +} diff --git a/tests/bugs/modalg_5/bug25163 b/tests/bugs/modalg_5/bug25163 new file mode 100644 index 0000000000..d45aef0bec --- /dev/null +++ b/tests/bugs/modalg_5/bug25163 @@ -0,0 +1,31 @@ +puts "============" +puts "OCC25163" +puts "============" +puts "" +############################################################################################### +# Wrong result of common operation for faces. +############################################################################################### + +restore [locate_data_file bug25163_qf_25_39.brep] b + +explode b f +copy b_1 b1 +copy b_2 b2 + +bop b1 b2 +bopcommon result + +set square 3417.71 + +# Analysis of "nbshapes result" +set nb_v_good 4 +set nb_e_good 4 +set nb_w_good 1 +set nb_f_good 1 +set nb_sh_good 1 +set nb_sol_good 0 +set nb_compsol_good 0 +set nb_compound_good 1 +set nb_shape_good 12 + +set 2dviewer 1