From c55daa7416d53577bb2cf6cd84e8ffa4667f9b9f Mon Sep 17 00:00:00 2001 From: knosulko Date: Mon, 27 Sep 2021 15:51:56 +0300 Subject: [PATCH] 0030025: Modeling Algorithms - Normal projection splits curve with a gap increase ExtraU , ExtraV. --- src/ProjLib/ProjLib_PrjResolve.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ProjLib/ProjLib_PrjResolve.cxx b/src/ProjLib/ProjLib_PrjResolve.cxx index e605133f6b..c37c5d1652 100644 --- a/src/ProjLib/ProjLib_PrjResolve.cxx +++ b/src/ProjLib/ProjLib_PrjResolve.cxx @@ -100,8 +100,8 @@ ProjLib_PrjResolve::ProjLib_PrjResolve(const Adaptor3d_Curve& C,const Adaptor3d_ Standard_Real ExtraU , ExtraV; // if(!StrictInside) { - ExtraU = 2. * Tol2d.X(); - ExtraV = 2. * Tol2d.Y(); + ExtraU = 10. * Tol2d.X(); + ExtraV = 10. * Tol2d.Y(); // } if (mySolution.X() > Inf.X() - Tol2d.X() && mySolution.X() < Inf.X()) mySolution.SetX(Inf.X()); if (mySolution.X() > Sup.X() && mySolution.X() < Sup.X() + Tol2d.X()) mySolution.SetX(Sup.X());