1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
ski 5747059b21 0026833: Create command checkview containing all viewer types
Created command checkview for displaying shapes.
2016-02-05 11:14:37 +03:00

37 lines
1.1 KiB
Plaintext
Executable File

puts "========================"
puts " OCC317 "
puts "========================"
puts ""
##################################################
## A Solid "so" is valid, whereas wire "so_5" from the solid is not valid.
##################################################
restore [locate_data_file OCC317.brep] result
set che [checkshape result]
if { [regexp {Faulty} $che] == 1} {
puts "Faulty OCC317: Source shape is invalid. It was detected by Checkshape command"
puts "Body of the script was NOT executed"
} else {
puts "OCC317 OK: Source shape is valid"
explode result w
set che [checkshape result_5]
if { [regexp {Faulty} $che] == 1} {
puts "Faulty OCC317: Wire is invalid. It was detected by Checkshape command"
} else {
puts "OCC317 OK : Wire is valid."
}
set che [checkshape result r]
if { [regexp {OK} $che] != 1 } {
puts "Faulty OCC317: Wire is invalid. It was detected by Checkshape command"
} else {
puts "OCC317 OK : Wire is valid."
}
}
checkprops result -s 2104.21
checkview -display result -2d -path ${imagedir}/${test_image}.png