mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0031066: Infinite loop in ShapeUpgrade_UnifySameDomain
Modification in local static method TransformPCurves - compute real U And V bounds of a face and use them in further computations.
This commit is contained in:
parent
13a44c4b7f
commit
63da0df9c2
@ -601,7 +601,7 @@ static void TransformPCurves(const TopoDS_Face& theRefFace,
|
|||||||
const TopoDS_Face& theFace,
|
const TopoDS_Face& theFace,
|
||||||
TopTools_MapOfShape& theMapEdgesWithTemporaryPCurves)
|
TopTools_MapOfShape& theMapEdgesWithTemporaryPCurves)
|
||||||
{
|
{
|
||||||
BRepAdaptor_Surface BAsurf(theFace, Standard_False);
|
BRepAdaptor_Surface BAsurf(theFace, Standard_True); //with real bounds of face
|
||||||
|
|
||||||
Standard_Real Uperiod = 0., Vperiod = 0.;
|
Standard_Real Uperiod = 0., Vperiod = 0.;
|
||||||
Handle(Geom_Surface) RefSurf = BRep_Tool::Surface(theRefFace);
|
Handle(Geom_Surface) RefSurf = BRep_Tool::Surface(theRefFace);
|
||||||
|
22
tests/bugs/modalg_7/bug31066
Normal file
22
tests/bugs/modalg_7/bug31066
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
puts "======================================================="
|
||||||
|
puts "OCC31066: Infinite loop in ShapeUpgrade_UnifySameDomain"
|
||||||
|
puts "======================================================="
|
||||||
|
puts ""
|
||||||
|
|
||||||
|
pload MODELING DATAEXCHANGE
|
||||||
|
|
||||||
|
stepread [locate_data_file bug31066.stp] a *
|
||||||
|
|
||||||
|
unifysamedom result a_1
|
||||||
|
|
||||||
|
checkshape result
|
||||||
|
|
||||||
|
checknbshapes result -solid 1 -shell 1 -face 140 -wire 174 -edge 352 -vertex 208
|
||||||
|
|
||||||
|
set tolres [checkmaxtol result]
|
||||||
|
|
||||||
|
if { ${tolres} > 0.001} {
|
||||||
|
puts "Error: bad tolerance of result"
|
||||||
|
}
|
||||||
|
|
||||||
|
checkprops result -v 139105
|
Loading…
x
Reference in New Issue
Block a user