mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
20 lines
500 B
Plaintext
Executable File
20 lines
500 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC25068"
|
|
puts "============"
|
|
puts ""
|
|
###################################################
|
|
## ShapeAnalysis_FreeBounds::ConnectEdgesToWires returns wires with not valid Closed flag
|
|
###################################################
|
|
|
|
restore [locate_data_file bug24807_Compound.brep] a
|
|
connectedges r a 1.e-7 0
|
|
explode r
|
|
|
|
set info [whatis r_1]
|
|
|
|
if { [regexp "Closed" ${info}] == 1 } {
|
|
puts "Error: Closed flag is not valid"
|
|
} else {
|
|
puts "OK: Closed flag is valid"
|
|
}
|