1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-29 14:00:49 +03:00

0033373: Modeling Algorithm - Incomplete result of boolean operation

Decreased the tolerance to merge close ranges into one
This commit is contained in:
akaftasev
2023-05-03 14:23:08 +01:00
parent 359edc7d8a
commit 26ec6390b5

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