mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
In the case of infinite point due to not enough machine precision the distance from the point to each edge of the face is computed the same, and the algorithm cannot correctly select the nearest edge. To solve this problem checking of point was added, if the point is located too far from the bounding box of the face, then it will be replaced with another point located on the line between the point and the center of the bounding box. The new point has the same state as initial one but its state can be resolved without ambiguity. Corrections in CheckPoint method Small correction of test case for issue CR27434
22 lines
468 B
Plaintext
22 lines
468 B
Plaintext
puts "============"
|
|
puts "OCC27434"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## Wrong result of classification of the point in "infinity".
|
|
###############################
|
|
|
|
set BugNumber OCC27434
|
|
|
|
restore [locate_data_file bug27434_ff.brep] ff
|
|
point pp 3.5104958975622309 1.4497931574922160e+031
|
|
|
|
set info [b2dclassify ff pp]
|
|
set check [regexp "OUT" $info]
|
|
|
|
if { ${check} == 1 } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|