mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
21 lines
667 B
Plaintext
Executable File
21 lines
667 B
Plaintext
Executable File
puts "========================"
|
|
puts " OCC433 "
|
|
puts "========================"
|
|
puts ""
|
|
#########################################################################################
|
|
## The attached face gives no errors in checkshape command in dev. However, it looks bad
|
|
#########################################################################################
|
|
|
|
restore [locate_data_file OCC433.brep] result
|
|
|
|
set err [checkshape result r]
|
|
|
|
if { [regexp {OK} $err] == 1} {
|
|
puts " Faulty OCC433: function CHECKSHAPE works wrongly"
|
|
} else {
|
|
puts " OCC433 OK: function CHECKSHAPE works properly"
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|