mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Check for double solutions has been added in algorithms Extrema_ELPCOfLocateExtPC and Extrema_ELPCOfLocateExtPC2d that find extrema between point and curve.
27 lines
612 B
Plaintext
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"
|
|
}
|