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.
36 lines
733 B
Plaintext
36 lines
733 B
Plaintext
puts "========="
|
|
puts "OCC24751"
|
|
puts "========="
|
|
puts ""
|
|
###########################################################
|
|
# Performance improvements in the Edge/Edge intersection algorithm
|
|
###########################################################
|
|
|
|
pload QAcommands
|
|
|
|
# enable OBB usage in BOP
|
|
buseobb 1
|
|
|
|
dchrono h restart
|
|
|
|
restore [locate_data_file bug24696_cx_e1200_nurbs.brep] cx
|
|
|
|
###------------------####
|
|
trotate cx 0 0 0 0 1 1 90
|
|
###------------------####
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
|
|
set edges [explode cx e]
|
|
set nbe [llength $edges]
|
|
for {set i 1} {$i <= $nbe} {incr i} {baddobjects cx_$i}
|
|
bfillds
|
|
bbuild result
|
|
|
|
dchrono h stop counter EdgeIntersection
|
|
|
|
buseobb 0
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|