mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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
1018 B
Plaintext
48 lines
1018 B
Plaintext
puts "======="
|
|
puts "0029237"
|
|
puts "======="
|
|
puts ""
|
|
##################################################
|
|
# Improve performance of Boolean Operations
|
|
##################################################
|
|
|
|
brestore [locate_data_file bug29237_dom8364_s32_c2.lhs.brep] a
|
|
brestore [locate_data_file bug29237_dom8364_s32_c2.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 7374 -edge 13894 -wire 4944 -face 4711 -shell 29 -solid 29
|
|
checkprops rcut -s 5.81474e+006 -v 1.32791e+007
|
|
|
|
# check the result of COMMON
|
|
checkshape rcommon
|
|
checknbshapes rcommon -vertex 6454 -edge 9662 -wire 4462 -face 4462 -shell 627 -solid 627
|
|
checkprops rcommon -s 1.81935e+006 -v 1.6368e+006
|