From 492b09dcaec31a4076241c578118bea129e60d25 Mon Sep 17 00:00:00 2001 From: gelin Date: Mon, 28 Feb 2022 09:13:31 +0300 Subject: [PATCH] 0032850: Modeling Algorithms - Surface Surface Intersect Lost one line IntStart_SearchOnBoundaries.gxx - improving tangent criteria --- src/IntPatch/IntPatch_ALineToWLine.cxx | 9 +++- src/IntStart/IntStart_SearchOnBoundaries.gxx | 52 +++++++++++++++----- tests/evolved/voluved/HMC010 | 2 +- tests/lowalgos/intss/bug32850 | 19 +++++++ 4 files changed, 68 insertions(+), 14 deletions(-) create mode 100644 tests/lowalgos/intss/bug32850 diff --git a/src/IntPatch/IntPatch_ALineToWLine.cxx b/src/IntPatch/IntPatch_ALineToWLine.cxx index 001d901a59..54f8f07453 100644 --- a/src/IntPatch/IntPatch_ALineToWLine.cxx +++ b/src/IntPatch/IntPatch_ALineToWLine.cxx @@ -714,7 +714,8 @@ void IntPatch_ALineToWLine::MakeWLine(const Handle(IntPatch_ALine)& theALine, } IntPatch_Point aVtx = theALine->Vertex(aVertexNumber); - const Standard_Real aNewVertexParam = aLinOn2S->NbPoints() + 1; + Standard_Real aNewVertexParam = aLinOn2S->NbPoints() + 1; + Standard_Integer aNbPointsPrev = aLinOn2S->NbPoints(); //ATTENTION!!! // IsPoleOrSeam inserts new point in aLinOn2S if aVtx respects @@ -748,6 +749,7 @@ void IntPatch_ALineToWLine::MakeWLine(const Handle(IntPatch_ALine)& theALine, aPrePointExist = IsPoleOrSeam(myS1, myS2, aPrefIso, aLinOn2S, aVtx, anArrPeriods, aTol, aSingularSurfaceID); + if (aPrePointExist == IntPatch_SPntPole || aPrePointExist == IntPatch_SPntPoleSeamU) { @@ -761,6 +763,11 @@ void IntPatch_ALineToWLine::MakeWLine(const Handle(IntPatch_ALine)& theALine, const Standard_Real aCurVertParam = aVtx.ParameterOnLine(); if(aPrePointExist != IntPatch_SPntNone) { + if (aNbPointsPrev == aLinOn2S->NbPoints()) + { + //Vertex coinsides any point of line and was not added into line + aNewVertexParam = aNbPointsPrev; + } aPrevParam = aParameter = aCurVertParam; } else diff --git a/src/IntStart/IntStart_SearchOnBoundaries.gxx b/src/IntStart/IntStart_SearchOnBoundaries.gxx index 8c013fbce1..59bac00346 100644 --- a/src/IntStart/IntStart_SearchOnBoundaries.gxx +++ b/src/IntStart/IntStart_SearchOnBoundaries.gxx @@ -354,6 +354,7 @@ void BoundedArc (const TheArc& A, { const IntSurf_Quadric& aQuadric = Func.Quadric(); GeomAbs_SurfaceType TypeQuad = aQuadric.TypeQuadric(); + GeomAbs_CurveType TypeConS = GeomAbs_OtherCurve; IntCurveSurface_HInter IntCS; Standard_Boolean IsIntCSdone = Standard_False; @@ -387,7 +388,7 @@ void BoundedArc (const TheArc& A, //Exact solution Handle(Adaptor3d_Surface) aSurf = Func.Surface(); Adaptor3d_CurveOnSurface ConS(A, aSurf); - GeomAbs_CurveType TypeConS = ConS.GetType(); + TypeConS = ConS.GetType(); #ifdef OCCT_DEBUG Handle(Geom_Curve) CurveConS; switch(TypeConS) @@ -608,13 +609,27 @@ void BoundedArc (const TheArc& A, para = aSI(i).Value(); Standard_Real param=(para+parap1)*0.5; - Standard_Real ym; - if(Func.Value(param,ym)) { - if(Abs(ym) 0.001) @@ -627,6 +642,7 @@ void BoundedArc (const TheArc& A, Standard_Integer aNbNodes = RealToInt(Ceiling((parap1 - para)/aTol)); Standard_Real aVal = RealLast(); + Standard_Real aValMax = 0.; //Standard_Integer aNbNodes = 23; Standard_Real aDelta = (parap1 - para)/(aNbNodes + 1.); Standard_Integer ii; @@ -637,17 +653,29 @@ void BoundedArc (const TheArc& A, aCurPar = (ii < aNbNodes + 1) ? para + ii*aDelta : parap1; if (Func.Value(aCurPar, aCurVal)) { - //if (aCurVal < aVal) { - if (Abs(aCurVal) < aVal) { - //aVal = aCurVal; - aVal = Abs(aCurVal); + Standard_Real anAbsVal = Abs(aCurVal); + if (anAbsVal < aVal) { + aVal = anAbsVal; param = aCurPar; } + if (anAbsVal > aValMax) + { + aValMax = anAbsVal; + } } } - // Modified by skv - Tue Aug 31 12:13:51 2004 OCC569 End - aSI(i).ChangeValue() = Pdeb - 1; - aSI(i + 1).ChangeValue() = param; + // At last, interval got by exact intersection can be considered as tangent if + // minimal distance is inside interval and + // minimal and maximal values are almost the same + if (IsIntCSdone && aNbNodes > 1) { + aTang = Abs(param - para) > EpsX && Abs(parap1 - param) > EpsX && + 0.01*aValMax <= aVal; + } + if (aTang) + { + aSI(i).ChangeValue() = Pdeb - 1; + aSI(i + 1).ChangeValue() = param; + } } } } diff --git a/tests/evolved/voluved/HMC010 b/tests/evolved/voluved/HMC010 index 6ea24a3b5e..dd63f25b95 100644 --- a/tests/evolved/voluved/HMC010 +++ b/tests/evolved/voluved/HMC010 @@ -2,7 +2,7 @@ puts "==========" puts "OCC29523" puts "==========" -cpulimit 60 +cpulimit 120 restore [locate_data_file bug29523_cut_extrudewire09.brep] sw restore [locate_data_file bug29523_cut_toolwire09.brep] tw diff --git a/tests/lowalgos/intss/bug32850 b/tests/lowalgos/intss/bug32850 new file mode 100644 index 0000000000..8312243c35 --- /dev/null +++ b/tests/lowalgos/intss/bug32850 @@ -0,0 +1,19 @@ +puts "========" +puts "0032850: Modeling Algorithms - Surface Surface Intersect Lost one line" +puts "========" +puts "" + +cylinder s1 25.8071575178163 0 -373.974517822281 0 1 0 -1.73024882663956e-06 0 0.999999999998503 408.974517822893 +trim s1 s1 0 0.0225015452057227 -146.010003766057 2146.01000376606 +cylinder s2 0 1974.19284248218 -373.974517822281 1 0 0 -0 1.73024882663956e-06 0.999999999998503 408.974517822893 +trim s2 s2 0 0.0225015452057227 -146.010003766057 946.010003766057 +mkface f1 s1; +mkface f2 s2; +set log [bopcurves f1 f2] +regexp {Tolerance Reached=+([-0-9.+eE]+)\n+([-0-9.+eE]+)} $log full Toler NbCurv +if {$NbCurv != 4} { + puts "Error: Number of curves is wrong" +} +if { $Toler > 1.0e-12} { + puts "Error: Big tolerance value" +} \ No newline at end of file