1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_7/bug29857
ifv 1dbdf099cd 0029857: Incorrect behavior of Point-Curve Extrema
Check for double solutions has been  added in algorithms Extrema_ELPCOfLocateExtPC and  Extrema_ELPCOfLocateExtPC2d
that find extrema between point and curve.
2018-06-29 12:11:45 +03:00

27 lines
612 B
Plaintext

puts "========"
puts "OCC29857"
puts "========"
puts ""
####################################
## Extrema between Point and Curve returns two results
## (there should be only one) that are actually the same
####################################
restore [locate_data_file bug29857.brep] c
set info [proj c -53.9663741221239 118.723988602907 -57.6228206908223]
set pp1 ""
set pp2 ""
regexp {ext_1} $info pp1
regexp {ext_2} $info pp2
if { $pp2 != "" } {
puts "Error : Projection is not correct"
}
if { $pp1 != "" } {
puts "OK: Projection is correct"
} else {
puts "Error : Projection is not correct"
}