1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
aml 9bf3177ff6 0025861: Wrong result obtained by projection algorithm.
Handling of trimmed analytical surfaces added in extrema PS.

New draw-command and test case for issue CR25861

Correction of test case for issue CR25861
2015-03-05 15:48:45 +03:00

35 lines
944 B
Plaintext

puts "================"
puts "OCC25861"
puts "================"
puts ""
#######################################################################
# Wrong result obtained by projection algorithm.
#######################################################################
pload QAcommands
restore [locate_data_file bug25861_f3.brep] f3
point p 6.9184976310066668 -24.127668568051799 8.6427835999999978
set info [xprojponf p f3]
if { [regexp {point px +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} ${info} string x2 y2 z2] != 1 } {
puts "Error: Wrong result obtained by projection algorithm"
} else {
puts "OK: Good result obtained by projection algorithm"
vertex v1 p
vertex v2 ${x2} ${y2} ${z2}
set CMP_TOL 1.0e-7
distmini res v1 v2
set distmin [dval res_val]
if { [expr abs(${distmin})] > ${CMP_TOL} } {
puts "Error: Wrong projection point"
} else {
puts "OK: Good projection point"
}
}