mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
1. Implementation of the user-defined option for usage of Oriented Bounding Boxes (OBB) in Boolean Operations for additional filtering (rejection) of selected for intersection pairs of sub-shapes. By default the usage of OBB is turned off. To enable/disable its usage the method SetUseOBB(flag) should be used. This method is available for all operations in Boolean Component. To enable/disable it in draw the command "buseobb 0/1" should be used. Note, that this will affect all subsequent operations. The OBB for the shapes are built by first necessity and stored into operation context (IntTools_Context). 2. Usage of the OBB in some test cases.
48 lines
1008 B
Plaintext
48 lines
1008 B
Plaintext
puts "======="
|
|
puts "0029237"
|
|
puts "======="
|
|
puts ""
|
|
##################################################
|
|
# Improve performance of Boolean Operations
|
|
##################################################
|
|
|
|
brestore [locate_data_file bug29237_no_overlap.lhs.brep] a
|
|
brestore [locate_data_file bug29237_no_overlap.rhs.brep] b
|
|
|
|
bglue 1
|
|
bcheckinverted 0
|
|
buseobb 1
|
|
|
|
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 2488 -edge 3732 -wire 1846 -face 1846 -shell 301 -solid 301 -t -m "CUT"
|
|
checkprops rcut -s 2.59678e+006 -v 1.5346e+007
|
|
|
|
# check the result of COMMON
|
|
checkshape rcommon
|
|
checknbshapes rcommon -vertex 0 -edge 0 -wire 0 -face 0 -shell 0 -solid 0 -t -m "COMMON"
|
|
checkprops rcommon -s empty -v empty
|