mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Sometimes the algorithm of purging of extra points in the walking line makes enormous difference in distance between two neighbor segments of the line. This badly impacts the quality of approximation result. This patch balances the difference in distances by forbidding deletion of some points. 1. tests/bugs/modalg_6/bug27615 The reason of the correction is explained in the message ~0072580 (see issue #28557). 2. tests/bugs/modalg_7/bug28892* tests/bugs/modalg_7/bug28984 The reason of the correction is explained in the message ~0072583 (see issue #28984).
23 lines
575 B
Plaintext
23 lines
575 B
Plaintext
puts "======="
|
|
puts "0028984"
|
|
puts "======="
|
|
puts ""
|
|
##################################################
|
|
# Huge intersection tolerance obtained by Face/Face intersection algorithm
|
|
##################################################
|
|
|
|
binrestore [locate_data_file bug28984_faces.bin] f
|
|
|
|
explode f
|
|
|
|
set log [bopcurves f_1 f_2 -2d]
|
|
regexp {Tolerance Reached=([-0-9.+eE]+)} $log full tol_reached
|
|
regexp {([1-9]) curve} $log full nb_curves
|
|
|
|
if {$nb_curves != 2} {
|
|
puts "Error: Invalid number of curves"
|
|
}
|
|
|
|
if {$tol_reached > 0.01} {
|
|
puts "Error: Too big intersection tolerance"
|
|
} |