]> OCCT Git - occt.git/commitdiff
0033373: Modeling Algorithm - Incomplete result of boolean operation CR33373
authorakaftasev <akaftasev@opencascade.com>
Wed, 3 May 2023 13:23:08 +0000 (14:23 +0100)
committerakaftasev <akaftasev@opencascade.com>
Wed, 3 May 2023 13:23:08 +0000 (14:23 +0100)
Decreased the tolerance to merge close ranges into one

src/IntTools/IntTools_EdgeEdge.cxx

index f5aa29374f43e3d202a6008ab3018b7cb91e9870..2762692764df6e1a47e78aad102520643e540e7a 100644 (file)
@@ -648,8 +648,8 @@ void IntTools_EdgeEdge::MergeSolutions(const IntTools_SequenceOfRanges& theRange
   //
   myRange1.Range(aT11, aT12);
   myRange2.Range(aT21, aT22);
-  dTR1 = 20*aRes1;
-  dTR2 = 20*aRes2;
+  dTR1 = 5*aRes1;
+  dTR2 = 5*aRes2;
   aType = TopAbs_VERTEX;
   //
   for (i = 1; i <= aNbCP;) {