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

0029356: Modeling Algorithms - GCPnts_TangentialDeflection hangs on specific curve

While UV Iso parameters are obtained in StdPrs_Isolines, UV limits should be applied only if face bounds has infinite values.
In the issue case, the UV values are greater than UVLimits and not infinite. This fix makes possible to have correct Iso lines in presentation without modification of UV limits beforehead.
This commit is contained in:
nds 2018-01-29 11:19:36 +03:00 committed by bugmaster
parent 06084bb8ec
commit d4efee2bfa
5 changed files with 73 additions and 4 deletions

View File

@ -589,10 +589,14 @@ void StdPrs_Isolines::UVIsoParameters (const TopoDS_Face& theFace,
BRepTools::UVBounds (theFace, aUmin, aUmax, aVmin, aVmax);
aUmin = Max (aUmin, -theUVLimit);
aUmax = Min (aUmax, theUVLimit);
aVmin = Max (aVmin, -theUVLimit);
aVmax = Min (aVmax, theUVLimit);
if (Precision::IsInfinite (aUmin))
aUmin = -theUVLimit;
if (Precision::IsInfinite (aUmax))
aUmax = theUVLimit;
if (Precision::IsInfinite (aVmin))
aVmin = -theUVLimit;
if (Precision::IsInfinite (aVmax))
aVmax = theUVLimit;
TopLoc_Location aLocation;
const Handle(Geom_Surface)& aSurface = BRep_Tool::Surface (theFace, aLocation);

11
tests/v3d/face/G1 Normal file
View File

@ -0,0 +1,11 @@
# isolines on infinite cylinder
# maximum parameter value for a view sets UV limit for isolines on infinite object
cylinder c 0 0 0 0 0 1 10
mkface f c
vinit
vdisplay -dispMode 0 f
vaspects -defaults -setMaxParamValue 10
visos f 10 4 1
vfit

11
tests/v3d/face/G2 Normal file
View File

@ -0,0 +1,11 @@
puts "========"
puts "0029356: Modeling Algorithms - GCPnts_TangentialDeflection hangs on specific curve"
puts "========"
if {[info commands testreadiges] == ""} {pload XSDRAW}
testreadiges [locate_data_file bug29356.igs] a
vinit View1
vdisplay -dispMode 0 a
visos a 12 6 1
vfit

23
tests/v3d/face/G3 Normal file
View File

@ -0,0 +1,23 @@
# isolines on infinite prism based on spline edge with poles closed to 1.4e+6
if {[info commands testreadiges] == ""} {pload XSDRAW}
testreadiges [locate_data_file bug29356.igs] a
mksurface s a
viso c s 0
dump c
mkedge e c
haxo
donly e
prism r e 0 1 0 Inf
fit
xbounds r
vinit
vdisplay r
visos r 2 3 1
vfit
vzoom 3000
vdump $imagedir/${casename}_zoom.png

20
tests/v3d/face/G4 Normal file
View File

@ -0,0 +1,20 @@
# isolines on finite prism based on spline edge with poles closed to 1.4e+6
if {[info commands testreadiges] == ""} {pload XSDRAW}
testreadiges [locate_data_file bug29356.igs] a
mksurface s a
viso c s 0
dump c
mkedge e c
haxo
donly e
prism r e 0 1 0 Fin
fit
xbounds r
vinit
vdisplay r
visos r 2 2 1
vfit