mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1. Modification in method BRepFill_Filling::Build - correction of building the wire. 2. Create new subgroup "filling" in the group "bugs".
16 lines
454 B
Plaintext
16 lines
454 B
Plaintext
puts "============================================================================"
|
|
puts "0030927: Modeling Algorithms - UnifySameDom looses the Closed flag for wires"
|
|
puts "============================================================================"
|
|
puts ""
|
|
|
|
box b1 10 10 10
|
|
box b2 5 0 -5 10 10 20
|
|
bfuse s b1 b2
|
|
unifysamedom result s
|
|
|
|
foreach w [explode result w] {
|
|
if {![regexp "Closed" [whatis $w]]} {
|
|
puts "Error: Wire $w is not closed"
|
|
}
|
|
}
|