1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

Compare commits

...

1 Commits

Author SHA1 Message Date
akaftasev
26ec6390b5 0033373: Modeling Algorithm - Incomplete result of boolean operation
Decreased the tolerance to merge close ranges into one
2023-05-03 14:23:08 +01:00

View 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;) {