mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Modeling - Bounding BSpline periodic tolerance issue #468
Update BndLib_Add3dCurve to check the periodic case u1-u2 matching with period
This commit is contained in:
parent
52a93a3bdd
commit
ea34d5b2b7
@ -215,9 +215,13 @@ void BndLib_Add3dCurve::Add(const Adaptor3d_Curve& C,
|
|||||||
u2 = Bsaux->LastParameter();
|
u2 = Bsaux->LastParameter();
|
||||||
// modified by NIZHNY-EAP Fri Dec 3 14:29:18 1999 ___END___
|
// modified by NIZHNY-EAP Fri Dec 3 14:29:18 1999 ___END___
|
||||||
}
|
}
|
||||||
|
const Standard_Real anU2Periodic =
|
||||||
|
Bsaux->IsPeriodic() ? (u2 - (Bsaux->LastParameter() - Bsaux->FirstParameter())) : u2;
|
||||||
Standard_Real aSegmentTol = 2. * Precision::PConfusion();
|
Standard_Real aSegmentTol = 2. * Precision::PConfusion();
|
||||||
if (Abs(u2 - u1) < aSegmentTol)
|
if (Abs((anU2Periodic - u1) < aSegmentTol))
|
||||||
aSegmentTol = Abs(u2 - u1) * 0.01;
|
{
|
||||||
|
aSegmentTol = Abs(anU2Periodic - u1) * 0.01;
|
||||||
|
}
|
||||||
Bsaux->Segment(u1, u2, aSegmentTol);
|
Bsaux->Segment(u1, u2, aSegmentTol);
|
||||||
Bs = Bsaux;
|
Bs = Bsaux;
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,6 @@ bop f1 f2
|
|||||||
bopsection result
|
bopsection result
|
||||||
|
|
||||||
checkprops result -l 13.7747
|
checkprops result -l 13.7747
|
||||||
checknbshapes result -vertex 4 -edge 3
|
checknbshapes result -vertex 3 -edge 2
|
||||||
|
|
||||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||||
|
10
tests/bugs/modalg_8/bug_gh466
Normal file
10
tests/bugs/modalg_8/bug_gh466
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
puts "========================================================================="
|
||||||
|
puts "GH466: BRepBndLib::AddClose crashes"
|
||||||
|
puts "========================================================================="
|
||||||
|
puts ""
|
||||||
|
|
||||||
|
pload QAcommands
|
||||||
|
|
||||||
|
restore [locate_data_file bug_gh466.brep] result
|
||||||
|
|
||||||
|
OCC566 result
|
Loading…
x
Reference in New Issue
Block a user