mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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).
35 lines
705 B
Plaintext
35 lines
705 B
Plaintext
puts "========"
|
|
puts "OCC27615"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# General Fuse operation error
|
|
#################################################
|
|
|
|
restore [locate_data_file bug27615.brep] p
|
|
|
|
whatis p
|
|
tolerance p
|
|
checkshape p
|
|
explode p
|
|
brunparallel 1
|
|
bopcheck p_1
|
|
bopcheck p_2
|
|
bopargcheck p_1 p_2 -O #F
|
|
bop p_1 p_2
|
|
bopcommon result
|
|
whatis result
|
|
explode result
|
|
whatis result_1
|
|
|
|
if { [regexp "This shape seems to be OK" [bopcheck result] ] != 1 } {
|
|
puts "Error : The result of General Fuse operation is self-interfered shape"
|
|
}
|
|
|
|
checkshape result_1
|
|
|
|
checkprops result_1 -v 15287.7 -s 8383.16
|
|
|
|
checkview -display result_1 -2d -path ${imagedir}/${test_image}.png
|
|
|