mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Boolean operations - Allow repeated intersection of edges to find the coinciding pairs. Previously, only the edges rejected by bounding boxes classification has been additionally checked on coincidence. The current patch removes this filter allowing all edges with coinciding vertices to be checked on coincidence. Adjustment of the test cases for current behavior: 1. The following cases are improvements: boolean volumemaker A8 bugs modalg_1 buc60703_1 bugs modalg_1 buc60703_2 bugs modalg_1 buc60703_4 bugs modalg_6 bug26789_1 bugs modalg_6 bug26789_2 bugs modalg_7 bug26883_4 bugs modalg_7 bug27948 2. bugs modalg_7 bug29580_1 is modified to extend the validity checks.
27 lines
733 B
Plaintext
Executable File
27 lines
733 B
Plaintext
Executable File
puts "========================"
|
|
puts "BUC60703"
|
|
puts "================================="
|
|
puts "Action with models with VERY BIG tolerance"
|
|
puts "================================="
|
|
##########################################
|
|
## Crash during a fuse whilst two plans are tangent.
|
|
## ( Case has LIMITATION status currently )
|
|
##########################################
|
|
|
|
#cpulimit 9000
|
|
|
|
restore [locate_data_file buc60703a.brep] a
|
|
# maxtolerance a
|
|
checkshape a
|
|
restore [locate_data_file buc60703b.brep] b
|
|
# maxtolerance b
|
|
checkshape b
|
|
|
|
bfuse result a b
|
|
|
|
checkshape result
|
|
checkprops result -s 173.109 -v 129.814
|
|
checknbshapes result -wire 10 -face 10 -shell 1 -solid 1
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|