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/bug28189_9
emv 77a11d3df1 0028189: Result of Boolean operation is non-manifold wire
1. The result of Boolean operation on the arguments of collection type, containers WIRE/SHELL/COMPSOLID, is also a collection.
The containers of type WIRE included into result should now also (as the SHELLs) have coherent orientation of its sub-shapes.
For that the new method has been implemented (BOPTools_AlgoTools::OrientEdgesOnWire(TopoDS_Shape&)) which reorients edges for correct ordering.
The duplicating containers, i.e. containers with the contents completely included in other containers, are now avoided in the result of BOP.
2. The result of Fuse operation on Compsolids is now also will be Compsolid.
3. Documentation has been updated.
4. New test cases for the issue.
5. Adjusting test cases to current behavior.

Correction of test case bugs/modalg_4/bug726_2 according to the new behavior
2016-12-29 18:32:44 +03:00

41 lines
848 B
Plaintext

puts "========"
puts "OCC28189"
puts "========"
puts ""
#################################################
# Result of Boolean operation is non-manifold wire
#################################################
box b1 10 10 10
box b2 5 5 5 10 10 10
box b3 20 0 0 10 10 10
box b4 25 5 5 10 10 10
shape c1 Cs
shape c2 Cs
add b1 c1
add b2 c2
bclearobjects
bcleartools
baddobjects c1 b3
baddtools c2 b4
bfillds
bbop result 1
checknbshapes result -solid 2 -compsolid 1
explode result
if {[regexp "COMPSOLID" [whatis result_1]]} {
if {![regexp "SOLID" [whatis result_2]]} {
puts "Error: Incorrect shape types in the result"
}
} elseif {[regexp "SOLID" [whatis result_1]]} {
if {![regexp "COMPSOLID" [whatis result_2]]} {
puts "Error: Incorrect shape types in the result"
}
} else {
puts "Error: Incorrect shape types in the result"
}