1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/xde/bug23328
akz 4366363b04 0023328: Importing VRML files with "scaleOrientation" not possible
If-else blocks "scale" and "scaleOrientation" was swapped. Now the comparing and interpretation of these key-words is correct.

Added test case bugs/xde/bug23328
2015-01-29 14:24:31 +03:00

18 lines
599 B
Plaintext

puts "=========="
puts "OCC23328"
puts "=========="
puts ""
#######################################################################################
# Importing VRML files with "scaleOrientation" not possible
#######################################################################################
set aFile [locate_data_file bug23328_occ23328.vrml]
set aLog [loadvrml test ${aFile}]
set aLength [string length ${aLog}]
if { ${aLength} == 0 } {
puts "OK: Importing VRML files with scaleOrientation is possible"
} else {
puts "Error: Importing VRML files with scaleOrientation is not possible"
}