1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_6/bug27878_6
emv 483ce1bd89 0027878: Development of the Gluing operations based on the new Boolean component
The Gluing operation is an additional option for the algorithms in the Boolean Component
such as General Fuse, Boolean operations, Section operation, Maker Volume and Cells Builder algorithms.

The Gluing options have been designed to speed up the computation of the interference among arguments of the operations on special cases,
in which the arguments may be overlapping but do not have real intersections between their sub-shapes.

This option cannot be used on the shapes having real intersections, like intersection vertex between edges,
or intersection vertex between edge and a face or intersection line between faces.

The Gluing option is an enumeration implemented in BOPAlgo_GlueEnum.hxx. There are following items in the enum:
* BOPAlgo_GlueOff - default value for the algorithms, Gluing is switched off;
* BOPAlgo_GlueShift - Glue option for shapes with partial coincidence;
* BOPAlgo_GlueFull - Glue option for shapes with full coincidence.

For setting the Gluing options for the algorithm it is just necessary to call the SetGlue(BOPAlgo_GlueEnum) method with appropriate Glue value.

For using this option in DRAW the command bglue has been implemented:
* 0 - default value, Gluing is off;
* 1 - for partial coincidence;
* 2 - for full coincidence

Elimination of the warnings.
2016-12-08 16:50:17 +03:00

46 lines
868 B
Plaintext

puts "========"
puts "OCC27878"
puts "========"
puts ""
#################################################
# Development of the Gluing operations based on the new Boolean component
#################################################
compound sh
for {set i 0} {$i < 4} {incr i} {
for {set j 0} {$j < 4} {incr j} {
box b 1 1 1;
ttranslate b $i $j 0;
add b sh
}
}
nurbsconvert b1 sh
#fuse boxes using glue full option
bglue 2
bclearobjects
bcleartools
baddobjects {*}[explode b1 so]
bfillds -t
bcbuild rx
bcaddall res1 -m 1 -u
copy res1 b2
ttranslate b2 0.5 0.5 1
# fuse two solids using glue shift
bglue 1
chrono t reset; chrono t start
bop res1 b2
chrono t stop; chrono t show
bopfuse result
checkshape result
checknbshapes result -face 78 -solid 1
checkprops result -s 71.5 -v 32
checkview -display result -2d -path ${imagedir}/${test_image}.png