mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
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.
24 lines
573 B
Plaintext
24 lines
573 B
Plaintext
puts "========"
|
|
puts "OCC27878"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Development of the Gluing operations based on the new Boolean component
|
|
#################################################
|
|
|
|
# planar boxes
|
|
|
|
restore [locate_data_file bug27878_shapes1.brep] c
|
|
|
|
# fusing the solids using the glue option
|
|
bglue 2
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects {*}[explode c so]
|
|
bfillds -t
|
|
bbuild result
|
|
|
|
checknbshapes result -face 1176 -solid 343
|
|
checkprops result -s 2058 -v 343
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png |