1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug27270
emv 1511c7e90f 0027270: Boolean operations: incorrect assembling of sub-shapes in container shapes (wires, shells, compsolids)
The map to protect the result of Boolean operation from duplicating parts in containers has been removed (method void BOPAlgo_BOP::BuildShape()).
The results of Boolean operations on containers will be the following:
1. For the arguments of collection type (WIRE, SHELL, COMPSOLID) containing overlapping parts the overlapping parts
passed into result will be repeated for each container from the input shapes containing such parts.
2. The result of the operation Fuse for the arguments of collection type (WIRE, SHELL, COMPSOLID) will contain
the same number of containers as the arguments. The overlapping parts (EDGES/FACES/SOLIDS) will be shared among them.
For example, the result of Fuse operation between two wires will be two wires sharing coinciding edges if any.
3. The result of the operation Common for the arguments of collection type (WIRE, SHELL, COMPSOLID) will consist
of the containers containing the same overlapping parts. For example, the result of Common operation between two
fully/partially overlapping wires will be two wires containing the same edges.

Style correction.

Added test case bugs/modalg_1/bug13538
Modified boolean test cases according to new begavior
2016-03-18 16:24:16 +03:00

25 lines
795 B
Plaintext

puts "============"
puts "OCC27270"
puts "============"
puts ""
###########################################################################################################
# Boolean operations: incorrect assembling of sub-shapes in container shapes (wires, shells, compsolids)
###########################################################################################################
box b1 200 200 200
explode b1 w
compound b1_1 b1_2 b1_3 b1_4 b1_5 b1_6 c1
tcopy c1 c2
ttranslate c2 100 0 300
bfuse result c1 c2
set info [explode result]
if { [llength $info] > 2 } {
puts "OK: result is correct"
} else {
puts "Error: incorrect assembling of sub-shapes in container shapes"
}
checkprops result -l 9600
checkshape result
checkview -display result -3d -path ${imagedir}/${test_image}.png