Salome HOME
Issue #19217: Dumped file not loadable
authorArtem Zhidkov <Artem.Zhidkov@opencascade.com>
Tue, 2 Jun 2020 19:26:16 +0000 (22:26 +0300)
committerArtem Zhidkov <Artem.Zhidkov@opencascade.com>
Tue, 2 Jun 2020 19:26:16 +0000 (22:26 +0300)
Increase fuzzy value for building the sketch faces.

src/GeomAlgoAPI/GeomAlgoAPI_SketchBuilder.cpp

index 6e6e3f99994db209093e4dc5b45b8eac0681bc3a..6e1abc12816f2bc2c8903f494300f3df97801bed 100644 (file)
@@ -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);