1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/moddata_3/bug31402_2
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

21 lines
500 B
Plaintext

puts "==========================================================="
puts "0031402: Geom_BSplineSurface::Segment produces wrong result"
puts "==========================================================="
puts ""
2dbsplinecurve curve 3 4 \
0 3 1.5 1 2.5 3 3 2 \
1.0 3.0 1 \
1.4 3.7 1 \
1.8 4.1 1 \
2.2 4.5 1 \
2.5 4.8 1 \
2.7 4.9 1 \
3.0 5.0 1 \
3.3 5.2 1
segment curve 1.5000000001 2.4999999999998
bounds curve u1 u2
checkreal "U1" [dval u1] 1.5 0.001 0.0001
checkreal "U2" [dval u2] 2.5 0.001 0.0001