1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
knosulko 78aade7569 0033017: Implement an algorithm to find a proximity between a pair of shapes
Extend "proximity" command to be able to compute the proximity value;
Implement classes for calculate proximity value between two shapes;
Add possibility to set up the number of sample points for the input shapes;
Add tests lowalgos/proximity.
2022-09-13 23:29:39 +03:00

19 lines
351 B
Plaintext

set er [expr abs(${expected} - ${val})]
if {${er} > ${tol}} {
puts "Error: bad proximity value"
} else {
puts "OK"
}
if {${status1} != ${expected_status1}} {
puts "Error: bad 1st proximity point status"
} else {
puts "OK"
}
if {${status2} != ${expected_status2}} {
puts "Error: bad 2nd proximity point status"
} else {
puts "OK"
}