mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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
18 lines
599 B
Plaintext
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"
|
|
}
|