mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Treatment of trimmed data is added Extrema/Extrema_ExtCC.cxx Test cases added tests/lowalgos/extcc/bug26269_1 tests/lowalgos/extcc/bug26269_2 Test cases are modified according to new behavior of algorithm
25 lines
573 B
Plaintext
25 lines
573 B
Plaintext
puts "========"
|
|
puts "0026269: Modeling Data - Analytical extrema does not take into account trimmed input data"
|
|
puts "========"
|
|
puts ""
|
|
|
|
#case 2
|
|
circle c1 0 0 0 10
|
|
circle c2 0 0 0 5
|
|
trim c1 c1 0 1
|
|
trim c2 c2 3 4
|
|
|
|
set res_extrema [extrema c1 c2]
|
|
|
|
if { [regexp "Infinite number of extremas" $res_extrema] == 0} {
|
|
if {[llength $res_extrema] != 1} {
|
|
puts "Error : expected 1 extrema, but found [llength $res_extrema]"
|
|
}
|
|
} else {
|
|
puts "Error : Infinite number of extremas is found"
|
|
}
|
|
|
|
smallview +X+Y
|
|
fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|