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.
28 lines
677 B
Plaintext
28 lines
677 B
Plaintext
puts "========"
|
|
puts "OCC29857_1"
|
|
puts "========"
|
|
puts ""
|
|
####################################
|
|
## Extrema between Point and Curve returns three solutions
|
|
## (there should be only two), two of these are actually the same
|
|
####################################
|
|
|
|
|
|
restore [locate_data_file bug29857_1.brep] c
|
|
set info [proj c -139.04514104219 128.256108703487 -64.9999999999983]
|
|
|
|
set pp1 ""
|
|
set pp2 ""
|
|
set pp3 ""
|
|
regexp {ext_1} $info pp1
|
|
regexp {ext_2} $info pp2
|
|
regexp {ext_3} $info pp3
|
|
if { $pp3 != "" } {
|
|
puts "Error : Projection is not correct"
|
|
}
|
|
if { $pp1 != "" && $pp2 != "" } {
|
|
puts "OK: Projection is correct"
|
|
} else {
|
|
puts "Error : Projection is not correct"
|
|
}
|