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
34 lines
744 B
Plaintext
34 lines
744 B
Plaintext
puts "========"
|
|
puts "OCC29712"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Extrema algorithm raises exception
|
|
#################################################
|
|
|
|
# Curves c1 and c2 lie on parallel lines.
|
|
# However, they are bounded (trimmed) curves
|
|
# and are shifted relatively to each other. So,
|
|
# perpendicular between these curves does not exist.
|
|
|
|
line c1 1 0 0 0 0 1
|
|
line c2 5 0 0 0 0 1
|
|
trim c1 c1 -1.0e100 5
|
|
trim c2 c2 10 20
|
|
|
|
extrema c1 c2
|
|
|
|
if { ![isdraw ext_1 ] } {
|
|
puts "Error in Extrema-algorithm"
|
|
} else {
|
|
puts "Extrema-algorithm works properly"
|
|
}
|
|
|
|
renamevar ext_1 e1
|
|
extrema c2 c1
|
|
|
|
if { ![isdraw ext_1 ] } {
|
|
puts "Error in Extrema-algorithm"
|
|
} else {
|
|
puts "Extrema-algorithm works properly"
|
|
} |