1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0025285: Wrong result of General Fuse operation for an edge and a face.

Changes:
class BOPTools_AlgoTools2D
    method:
void BOPTools_AlgoTools2D::AdjustPCurveOnFace
  (const TopoDS_Face& aF,
   const Standard_Real aFirst,
   const Standard_Real aLast,
   const Handle(Geom2d_Curve)& aC2D,
   Handle(Geom2d_Curve)& aC2DA)

The adjustment value for 2D curve has been calrified with precision value in parametric space

Test case for issue CR25285
This commit is contained in:
pkv 2014-10-02 14:10:34 +04:00 committed by bugmaster
parent 735dc1d26e
commit 9c0b61f308
2 changed files with 47 additions and 2 deletions

View File

@ -323,10 +323,21 @@ void BOPTools_AlgoTools2D::AdjustPCurveOnFace
// du
du = 0.;
if (aBAS.IsUPeriodic()) {
Standard_Real newu;
Standard_Real u2x;
aUPeriod = aBAS.UPeriod();
//
GeomInt::AdjustPeriodic(u2, UMin, UMax, aUPeriod, newu, du);
// A. drive u2 into the stall [Umin, Umin+aUPeriod] -> u2x
GeomInt::AdjustPeriodic(u2, UMin, UMax, aUPeriod, u2x, du, 0.);
//
// b. try to clarify u2 using the precision (aDelta)
if (fabs(u2x-UMin) < aDelta) {
u2=UMin;
}
else if (fabs(u2x-UMin-aUPeriod) < aDelta) {
u2=UMin+aUPeriod;
}
// C. compute du again using clarified value of u2
GeomInt::AdjustPeriodic(u2, UMin, UMax, aUPeriod, u2x, du, 0.);
//
if (du==0.) {
if (aBAS.GetType()==GeomAbs_Cylinder) {

34
tests/bugs/modalg_5/bug25285 Executable file
View File

@ -0,0 +1,34 @@
puts "================"
puts "OCC25285"
puts "================"
puts ""
#######################################################################
# Wrong result of General Fuse operation for an edge and a face.
#######################################################################
restore [locate_data_file bug25285_qefx.brep] qefx
explode qefx
copy qefx_1 e
copy qefx_2 f
bclearobjects
bcleartools
baddobjects f e
bfillds
bbuild result
set square 8.83493
set nb_v_good 4
set nb_e_good 4
set nb_w_good 1
set nb_f_good 1
set nb_sh_good 0
set nb_sol_good 0
set nb_compsol_good 0
set nb_compound_good 1
set nb_shape_good 11
set 3dviewer 1