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).
26 lines
660 B
Plaintext
26 lines
660 B
Plaintext
puts "======="
|
|
puts "OCC28892"
|
|
puts "======="
|
|
puts ""
|
|
##################################################
|
|
# BOPAlgo_PaveFiller returns status "error: 11" in draw or raises exception in app on the given shapes set
|
|
##################################################
|
|
|
|
binrestore [locate_data_file bug28892_tools.bin] b
|
|
|
|
explode b
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects b_6
|
|
baddtools b_12
|
|
bfillds
|
|
bbuild result
|
|
|
|
# just check that the operation did not raise an exception and produced any result
|
|
checkshape result
|
|
|
|
if {![regexp "OK" [bopcheck result]]} {
|
|
puts "Error: result is self-interfered"
|
|
}
|
|
|
|
# checkview -display result -2d -path ${imagedir}/${test_image}.png |