1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/moddata_3/bug24959_2
ski 8f7e78f4de 0025569: Tests 24959_1 and 24959_2 are not correct
Test cases were corrected to check triangulation deflection
2015-01-22 17:15:08 +03:00

27 lines
945 B
Plaintext

puts "========"
puts "OCC24959"
puts "========"
puts ""
####################################################
## GCPnts_TangentialDeflection does not implement functionality by its meaning in case of BSpline with local splash
####################################################
bsplinesurf s 2 12 0.0 3 0.1 1 0.2 1 0.3 1 0.4 1 0.5 1 0.525 1 0.55 1 0.575 1 0.8 1 0.9 1 1.0 3 1 2 0.0 2 1.0 2 16 0 0 1 14 0 0 1 12 0 0 1 10 0 0 1 8 0 0 1 6 0 0 1 4 0 0 1 2 0 0 1 0 0 0 1 -2 0 0 1 -4 0 0 1 -6 0 0 1 -8 0 0 1 16 5 0 1 14 5 0 1 12 5 0 1 10 5 0 1 8 5 0 1 6 5 0 1 4 5 0 1 1.5 9 0 1 0 5 0 1 -2 5 0 1 -4 5 0 1 -6 5 0 1 -8 5 0 1
mkface result s
incmesh result 1
set tri_info [trinfo result]
regexp {deflection ([0-9.+e-]+)} $tri_info full defl
# check deflections
if { $defl > 1 } {
puts "Error: too big deflection on original face (${defl} > 1)"
} else {
puts "Deflection is OK (${defl})"
}
vdisplay result
vsetdispmode 1
vtop
vfit
set only_screen 1