mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
22 lines
456 B
Plaintext
22 lines
456 B
Plaintext
puts "============"
|
|
puts "OCC25634"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# Checking of compliance of vertices and pcurve fails
|
|
######################################################
|
|
|
|
restore [locate_data_file bug25634_shape3.brep] s
|
|
|
|
explode s e
|
|
|
|
set info [checkedge s_1 s]
|
|
|
|
# Resume
|
|
puts ""
|
|
if { [regexp {Edge seems OK.} ${info}] } {
|
|
puts "OK: Checking is good"
|
|
} else {
|
|
puts "Error: Checking is bad"
|
|
}
|