mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
test bugs modalg_7 bug22821 failed on fillet shape with 5-th edge. Experimentally has been found that reducing of parameter ChFi3d_Builder::tolesp for this task solves the issue. So, as soluton it is proposed to link parameter toleps with parameter range of spine curve. So, production coefficient has been set to pass all tests and 2 teset was extended: tests/blend/complex/A6, tests/bugs/modalg_7/bug22821 first has been extended to test different scaling factors, second has been extended to make fillet on all edges from 12. Additionally: - fixed misusage of tolesp in contexts where tolerance of point in 3d is excepted; In some context usage of tol_esp is irrelevant, because its essentiality - tolerance of the parameter on the 3d curve. So, in such context it has been replaced with new parameter tol3d (with fix value 1.0e-4). Get rid of tolapp3d duplication constant - tol_3d - tolesp = 5.0e-5 * (umax - umin) - tolesp replaced by tolpoint2d/tolpoint3d in several classes. Blend_Walking BRepBlend_SurfRstLineBuilder BRepBlend_RstRstLineBuilder Blend_CSWalking Instead `tolesp` - `tolgui` is employed in contexts where tolerance of guide curve parameter is excepted. Instead `tolesp` - `tolpoint2d` or `tolpoint3d` is employed in contexts where tolerance of point in 2d or 3d space is excepted. - Replace tolesp with tolpoint2d/tolpoint3d in BBPP function argument. - Use tolapp3d instead tolesp in BonVoisin function,
173 lines
4.2 KiB
Plaintext
173 lines
4.2 KiB
Plaintext
// Copyright (c) 1995-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
Blend_CSWalking::Blend_CSWalking(const TheCurve& Curv,
|
|
const TheSurface& Surf,
|
|
const Handle(TheTopolTool)& Domain):
|
|
done(Standard_False),surf(Surf),
|
|
curv(Curv)
|
|
{
|
|
domain = Domain;
|
|
}
|
|
|
|
|
|
|
|
void Blend_CSWalking::Perform(Blend_CSFunction& Func,
|
|
// Blend_CSFuncInv& FuncInv,
|
|
const Standard_Real Pdep,
|
|
const Standard_Real Pmax,
|
|
const Standard_Real MaxStep,
|
|
const Standard_Real Tol3d,
|
|
const Standard_Real TolGuide,
|
|
const math_Vector& ParDep,
|
|
const Standard_Real Fleche,
|
|
const Standard_Boolean Appro)
|
|
{
|
|
|
|
done = Standard_False;
|
|
iscomplete = Standard_False;
|
|
comptra = Standard_False;
|
|
line = new TheLine ();
|
|
Standard_Integer Nbvar = Func.NbVariables();
|
|
tolpoint3d = Tol3d;
|
|
tolgui = Abs(TolGuide);
|
|
fleche = Abs(Fleche);
|
|
rebrou = Standard_False;
|
|
pasmax = Abs(MaxStep);
|
|
math_Vector sol(1,Nbvar);
|
|
|
|
firstsol = new TColStd_HArray1OfReal(1,Nbvar);
|
|
|
|
if (Pmax-Pdep >= 0.) {
|
|
sens = 1.;
|
|
}
|
|
else {
|
|
sens = -1.;
|
|
}
|
|
|
|
Blend_Status State;
|
|
TheExtremity ptf1,ptf2;
|
|
|
|
param = Pdep;
|
|
firstparam = Pdep;
|
|
Func.Set(param);
|
|
|
|
if (Appro) {
|
|
|
|
TopAbs_State situ;
|
|
// math_Vector tolerance(1,3),infbound(1,3),supbound(1,3);
|
|
math_Vector tolerance(1,Nbvar),infbound(1,Nbvar),supbound(1,Nbvar);
|
|
Func.GetTolerance(tolerance,tolpoint3d);
|
|
Func.GetBounds(infbound,supbound);
|
|
math_FunctionSetRoot rsnld(Func,tolerance,30);
|
|
|
|
rsnld.Perform(Func,ParDep,infbound,supbound);
|
|
|
|
if (!rsnld.IsDone()) {
|
|
return;
|
|
}
|
|
rsnld.Root(sol);
|
|
|
|
// situ1 = TheTopolTool::Classify(surf1,gp_Pnt2d(sol(1),sol(2)),
|
|
// Max(tolerance(1),tolerance(2)));
|
|
// situ2 = TheTopolTool::Classify(surf2,gp_Pnt2d(sol(3),sol(4)),
|
|
// Max(tolerance(3),tolerance(4)));
|
|
/*
|
|
situ = domain->Classify(gp_Pnt2d(sol(1),sol(2)),
|
|
Min(tolerance(1),tolerance(2)));
|
|
*/
|
|
situ = domain->Classify(Func.Pnt2d(),
|
|
Min(tolerance(1),tolerance(2)));
|
|
|
|
if (situ != TopAbs_IN ) {
|
|
return;
|
|
}
|
|
}
|
|
else {
|
|
sol = ParDep;
|
|
}
|
|
|
|
for (Standard_Integer i=1; i<= Nbvar; i++) {
|
|
firstsol->ChangeValue(i) = sol(i);
|
|
}
|
|
State = TestArret(Func,sol,Standard_False,Blend_OK);
|
|
if (State!=Blend_OK) {
|
|
return;
|
|
}
|
|
#ifdef OCCT_DEBUG
|
|
if (Blend_GettraceDRAWSECT()){
|
|
Drawsect(surf,curv,param,Func);
|
|
}
|
|
#endif
|
|
// Mettre a jour la ligne.
|
|
line->Append(previousP);
|
|
Standard_Real U,V,W;
|
|
previousP.ParametersOnS(U,V);
|
|
W = previousP.ParameterOnC();
|
|
TheExtremity P1(previousP.PointOnS(),U,V,previousP.Parameter(),tolpoint3d);
|
|
TheExtremity P2(previousP.PointOnC(),W,previousP.Parameter(),tolpoint3d);
|
|
if (sens>0.) {
|
|
line->SetStartPoints(P1,P2);
|
|
}
|
|
else {
|
|
line->SetEndPoints(P1,P2);
|
|
}
|
|
|
|
// InternalPerform(Func,FuncInv,Pmax);
|
|
InternalPerform(Func,sol,Pmax);
|
|
|
|
done = Standard_True;
|
|
}
|
|
|
|
|
|
|
|
Standard_Boolean Blend_CSWalking::Complete(Blend_CSFunction& Func,
|
|
// Blend_CSFuncInv& FuncInv,
|
|
const Standard_Real Pmin)
|
|
{
|
|
if (!done) {throw StdFail_NotDone();}
|
|
if (iscomplete) {return Standard_True;}
|
|
|
|
/*
|
|
if (sens >0.) {
|
|
previousP = line->Point(1);
|
|
}
|
|
else {
|
|
previousP = line->Point(line->NbPoints());
|
|
}
|
|
*/
|
|
|
|
sens = -sens;
|
|
/*
|
|
param = previousP.Parameter();
|
|
previousP.ParametersOnS(sol(1),sol(2));
|
|
sol(3) = previousP.ParameterOnC();
|
|
*/
|
|
Standard_Integer Nbvar = Func.NbVariables();
|
|
math_Vector sol(1,Nbvar);
|
|
for (Standard_Integer i =1; i<= Nbvar; i++) {
|
|
sol(i) = firstsol->Value(i);
|
|
}
|
|
|
|
param = firstparam;
|
|
|
|
// InternalPerform(Func,FuncInv,Pmin);
|
|
InternalPerform(Func,sol,Pmin);
|
|
|
|
sens = -sens;
|
|
iscomplete = Standard_True;
|
|
return Standard_True;
|
|
}
|
|
|