mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Improve performance of Boolean operations algorithm by: - Improving the check of Same Domain faces (BOPAlgo_Builder::FillSameDomainFaces()); - Faster rejection of outer faces for solids using Bounding Box classification first (BOPAlgo_Builder::FillIn3DParts()); - Using IncAllocator for local containers. Quality improvement has been made in BOPAlgo_PaveFiller class: 1. Method IsExistingPaveBlock() has been corrected to provide the correct edge tolerance and to obtain valid intermediate results in the test case "boolean gdml_private ZH3". New test case have been added to verify this improvement (bugs modalg_7 bug29301). 2. Method PutClosingPaveOnCurve() has been corrected to use the tolerance of the pave put on the bound for checking curve on closeness. Additional check for the curve to have valid range after addition of the pave on the other end has been added to prevent considering the small curves (covered by vertex tolerance) as closed ones. As a result of this modification the test case boolean gdml_public B2 has been fixed (TODO removed). Adjustment of the test cases to current behavior: - boolean bopcommon_complex J1 - the produced result was incorrect as it was self-interfered. There should be no common in this case. - offset shape_type_i_c ZZ1 - the incorrect result is now produced instead of null shape.
27 lines
628 B
Plaintext
27 lines
628 B
Plaintext
puts "========"
|
|
puts "OCC29301"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Improve performance of Boolean Operations
|
|
#################################################
|
|
|
|
restore [locate_data_file bug29301_zh3.brep] cs
|
|
|
|
explode cs
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects cs_1
|
|
baddtools cs_2
|
|
bfillds
|
|
bbuild result
|
|
|
|
checkshape result
|
|
checknbshapes result -vertex 5 -edge 10 -wire 5 -face 5 -shell 2 -solid 2
|
|
checkprops result -s 4823.5 -v 10392.6
|
|
if {![regexp "OK" [bopcheck result]]} {
|
|
puts "Error: the result is self-interfered"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png |