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/bug28189_1
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

38 lines
985 B
Plaintext

puts "========"
puts "OCC28189"
puts "========"
puts ""
#################################################
# Result of Boolean operation is non-manifold wire
#################################################
restore [locate_data_file bug28189_contour.brep] s
restore [locate_data_file bug28189_solid.brep] c
bcommon result s c
checknbshapes result -vertex 3 -edge 2 -wire 1
checkprops result -l 173.267
# check orientation of edges in the resulting wire
explode result e
explode result_1 v
explode result_2 v
set cmp1 [compare result_1_1 result_2_1]
set cmp2 [compare result_1_1 result_2_2]
if {[regexp "same shapes" $cmp1]} {
if {[regexp "equal shapes" $cmp1]} {
puts "Error: Incorrect orientation of edges in wire"
}
} elseif {[regexp "same shapes" $cmp2]} {
if {[regexp "equal shapes" $cmp2]} {
puts "Error: Incorrect orientation of edges in wire"
}
} else {
puts "Error: No shared vertex"
}
checkview -display result -2d -path ${imagedir}/${test_image}.png