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/bug31402_1
aavtamon 1e08a76f1e 0031402: Modeling Data - Geom_BSplineSurface::Segment() produces wrong result
In the method Segment() index1 needs to be checked as well as index2 in Geom_BSplineSurface and Geom2d_BSplineCurve
(Geom_BSplineCurve already has this check).
New test cases bug31402_1, bug31402_2 has been added.

The unnecessary code block in Geom2d_BSplineCurve has been deleted,
and checking index2 block has beed extended.
2020-12-04 19:00:48 +03:00

15 lines
532 B
Plaintext

puts "==========================================================="
puts "0031402: Geom_BSplineSurface::Segment produces wrong result"
puts "==========================================================="
puts ""
restore [locate_data_file bug31402.brep] face
mksurface s face
segsur s 0.0, 1.0, 0.49999999999999988898, 0.66666666666666662966
bounds s u1 u2 v1 v2
checkreal "U1" [dval u1] 0 0.001 0.0001
checkreal "U2" [dval u2] 1 0.001 0.0001
checkreal "V1" [dval v1] 0.5 0.001 0.0001
checkreal "V2" [dval v2] 0.66666667 0.001 0.0001