mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
30 lines
850 B
Plaintext
30 lines
850 B
Plaintext
puts "============"
|
|
puts "0033017: Implement an algorithm to find a proximity between a pair of shapes"
|
|
puts "==========="
|
|
puts ""
|
|
|
|
beziercurve bc1 7 10 84 0 54 96 0 145 146 0 167 167 0 185 212 0 187 234 0 176 302 0
|
|
beziercurve bc2 8 120 72 0 170 87 0 227 118 0 238 126 0 243 157 0 203 216 0 134 281 0 94 324 0
|
|
|
|
mkedge e1 bc1
|
|
mkedge e2 bc2
|
|
|
|
incmesh e1 1.e-3
|
|
incmesh e2 1.e-3
|
|
|
|
set log [proximity e1 e2 -value -profile]
|
|
regexp {Proximity value: ([0-9+-.eE]*)} $log full val;
|
|
|
|
set tol 1.e-3
|
|
explode e1 v
|
|
explode e2 v
|
|
distmini d e1_2 e2_2
|
|
regexp {([-0-9.+eE]+)$} [dump d_val] full expected
|
|
|
|
regexp {Status of ProxPnt1 on ([A-Za-z0-9._-]*) : ([A-Za-z]*)} $log full val1 val2
|
|
set status1 ${val2}
|
|
set expected_status1 Border
|
|
|
|
regexp {Status of ProxPnt2 on ([A-Za-z0-9._-]*) : ([A-Za-z]*)} $log full val1 val2
|
|
set status2 ${val2}
|
|
set expected_status2 Border |