mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023436: BRepOffsetAPI_ThruSections crashes when lofting through identical profiles
Adding of test case
This commit is contained in:
parent
19d6e40d3f
commit
aadab519fd
@ -102,7 +102,27 @@
|
||||
#include <BRepBuilderAPI_FindPlane.hxx>
|
||||
|
||||
|
||||
//=======================================================================
|
||||
//function : PreciseUpar
|
||||
//purpose : pins the u-parameter of surface close to U-knot
|
||||
// to this U-knot
|
||||
//=======================================================================
|
||||
|
||||
static Standard_Real PreciseUpar(const Standard_Real anUpar,
|
||||
const Handle(Geom_BSplineSurface)& aSurface)
|
||||
{
|
||||
Standard_Real Tol = Precision::PConfusion();
|
||||
Standard_Integer i1, i2;
|
||||
|
||||
aSurface->LocateU(anUpar, Tol, i1, i2);
|
||||
Standard_Real U1 = aSurface->UKnot(i1);
|
||||
Standard_Real U2 = aSurface->UKnot(i2);
|
||||
|
||||
Standard_Real NewU = anUpar;
|
||||
|
||||
NewU = (anUpar - U1 < U2 - anUpar)? U1 : U2;
|
||||
return NewU;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : PerformPlan
|
||||
@ -629,6 +649,8 @@ void BRepOffsetAPI_ThruSections::CreateSmoothed()
|
||||
Standard_Real Ui1,Ui2,V0,V1;
|
||||
Ui1 = i-1;
|
||||
Ui2 = i;
|
||||
Ui1 = PreciseUpar(Ui1, surface);
|
||||
Ui2 = PreciseUpar(Ui2, surface);
|
||||
V0 = surface->VKnot(surface->FirstVKnotIndex());
|
||||
V1 = surface->VKnot(surface->LastVKnotIndex());
|
||||
surface->Segment(Ui1,Ui2,V0,V1);
|
||||
|
13
tests/bugs/modalg/bug23436
Executable file
13
tests/bugs/modalg/bug23436
Executable file
@ -0,0 +1,13 @@
|
||||
puts "============"
|
||||
puts "CR23436"
|
||||
puts "============"
|
||||
puts ""
|
||||
######################################################
|
||||
# BRepOffsetAPI_ThruSections crashes when lofting through identical profiles
|
||||
######################################################
|
||||
|
||||
restore [locate_data_file bug23436_myloft.brep] s
|
||||
|
||||
explode s
|
||||
|
||||
thrusections result 0 0 s_1 s_2 s_3
|
Loading…
x
Reference in New Issue
Block a user