1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0026918: GeomLib_CheckCurveOnSurface cannot compute distance if 3D-curve is periodic

Creation of test case for this issue.
This commit is contained in:
nbv 2016-04-12 18:16:00 +03:00 committed by bugmaster
parent 79981d14cc
commit 309bad284d

View File

@ -27,3 +27,24 @@ checkprops result -s 668843
checkshape result
checkview -display result -2d -path ${imagedir}/${test_image}.png
############################################################################################################
# Addition checks according to the issue OCC26918
###########################################################################################################
set i 1
set Lf [explode result f]
foreach ff $Lf {
set Le [explode $ff e]
set j 1
foreach ee $Le {
if { [string first "Tolerance cannot be computed" [xdistef $ee $ff]] >= 0 } {
puts "Error: \"xdistef result_$i_$j result_$i\" cannot find maximal distance "
}
incr j
}
incr i
}