From: Artem Zhidkov Date: Tue, 2 Jun 2020 19:26:16 +0000 (+0300) Subject: Issue #19217: Dumped file not loadable X-Git-Tag: V9_5_0rc1~18 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4f2157331d04b1d97560d7e79093a9fd2b62ebe8;p=modules%2Fshaper.git Issue #19217: Dumped file not loadable Increase fuzzy value for building the sketch faces. --- diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_SketchBuilder.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_SketchBuilder.cpp index 6e6e3f999..6e1abc128 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_SketchBuilder.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_SketchBuilder.cpp @@ -222,8 +222,8 @@ void GeomAlgoAPI_SketchBuilder::build( BOPAlgo_Builder* aBB = new BOPAlgo_Builder; aBB->AddArgument(aPlnFace); // Set fuzzy value for BOP, because PlaneGCS can solve the set of constraints with - // the precision up to 1e-5 if the sketch contains arcs. - static const double THE_FUZZY_TOL = 1.e-5; + // the precision up to 5.e-5 if the sketch contains arcs. + static const double THE_FUZZY_TOL = 5.e-5; aBB->SetFuzzyValue(THE_FUZZY_TOL); setImpl(aBB);