mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Prevent modification of the input shapes in destructive mode in case their sub-shapes have not been modified: 1. Prevent edge splitting for the pave blocks with old vertices if it is possible to use the existing edge (*BOPAlgo_PaveFiller::MakeSplitEdges*); 2. Prevent creation of the new containers (WIRES/SHELLS/COMPSOLIDS) if non of its parts have been modified (*BOPAlgo_Builder::FillImagesContainer*); 3. Prevent creation of the new face if non of its wires have been modified (*BOPAlgo_Builder::FillImagesFaces*); 4. If possible, use the original face to be the representative for the group of SD faces (*BOPAlgo_Builder::FillSameDomainFaces*). Cosmetic changes: 1. Documentation of the *BOPAlgo_Builder* class. 2. Making simple methods of the *BOPAlgo_Builder* class inline. 3. Getting rid of the *BOPAlgo_Builder::mySplits* field as it is excessive. *BOPAlgo_Builder::myImages* can be used instead. 3. Moving the Check Inverted option from *BOPAlgo_Options* to *BOPAlgo_Builder*. Test cases for the issue. Adjustment of the test case to their current behavior. Test case *blend/complex/H2* has been deleted as duplicate of the test case *blend/simple/Z1*.
47 lines
1012 B
Plaintext
47 lines
1012 B
Plaintext
puts "======="
|
|
puts "0029237"
|
|
puts "======="
|
|
puts ""
|
|
##################################################
|
|
# Improve performance of Boolean Operations
|
|
##################################################
|
|
|
|
brestore [locate_data_file bug29237_tc_43.1_lhs.brep] a
|
|
brestore [locate_data_file bug29237_tc_43.1_rhs.brep] b
|
|
|
|
bglue 1
|
|
bcheckinverted 0
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects a
|
|
baddtools b
|
|
|
|
# start chronometer
|
|
dchrono cpu restart
|
|
bfillds
|
|
|
|
bcbuild r
|
|
|
|
# build the result of cut
|
|
bcremoveall
|
|
bcadd rcut a 1 b 0
|
|
|
|
# build the result of common
|
|
bcremoveall
|
|
bcadd rcommon a 1 b 1
|
|
|
|
# stop chronometer
|
|
dchrono cpu stop counter OCC29237
|
|
|
|
|
|
# check the result of CUT
|
|
checkshape rcut
|
|
checknbshapes rcut -vertex 1200 -edge 2040 -wire 842 -face 842 -shell 1 -solid 1 -t -m "CUT"
|
|
checkprops rcut -s 3.4136e+006 -v 2.9712e+007
|
|
|
|
# check the result of COMMON
|
|
checkshape rcommon
|
|
checknbshapes rcommon -vertex 1176 -edge 1764 -wire 882 -face 882 -shell 147 -solid 147 -t -m "COMMON"
|
|
checkprops rcommon -s 2.13392e+006 -v 1.6448e+007
|