mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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
28 lines
558 B
Plaintext
28 lines
558 B
Plaintext
puts "========"
|
|
puts "OCC28189"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# Result of Boolean operation is non-manifold wire
|
|
#################################################
|
|
|
|
polyline p1 0 0 0 1 0 0
|
|
polyline p2 0 0 0 1 0 0
|
|
|
|
orientation p1 R
|
|
orientation p2 F
|
|
|
|
bfuse result1 p1 p2
|
|
explode result1
|
|
|
|
if {![regexp "REVERSED" [whatis result1_1]]} {
|
|
puts "Error: Incorrect orientation of wire"
|
|
}
|
|
|
|
bcommon result2 p2 p1
|
|
explode result2
|
|
|
|
if {![regexp "FORWARD" [whatis result2_1]]} {
|
|
puts "Error: Incorrect orientation of wire"
|
|
}
|