mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
22 lines
530 B
Plaintext
22 lines
530 B
Plaintext
puts "============"
|
|
puts "OCC2821"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# IGES file not impored correctly
|
|
######################################################
|
|
|
|
igesbrep [locate_data_file OCC2821.igs] a *
|
|
|
|
set comp [tpcompound result]
|
|
regexp {([-0-9.+eE]+) +Shape\(s\)} $comp full nb
|
|
if { $nb < 1} {
|
|
puts "Error : Number of shape(s) listed is wrong"
|
|
} else {
|
|
checkprops result -s 41153
|
|
checkshape result
|
|
}
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|