mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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
35 lines
944 B
Plaintext
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"
|
|
}
|
|
|
|
}
|