1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/heal/bug24549
ibs 630ab8c7fe 0024549: Faulty shape after IGES translation with xstep.cascade.unit set to M
pcurve as line isn't created to avoid incorrect parameterization
Test case for issue CR24549

Test cases were corrected according to their new behavior
2014-03-21 16:11:31 +04:00

26 lines
625 B
Plaintext

puts "============"
puts "OCC24549"
puts "============"
puts ""
#######################################################################
## Faulty shape after IGES translation with xstep.cascade.unit set to M
#######################################################################
pload DATAEXCHANGEKERNEL
param xstep.cascade.unit M
igesread [locate_data_file bug24549_Hull_B.igs] result *
regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance result] full MaxTol_1
puts "MaxTolerance = $MaxTol_1"
set MaxTol 0.001
if { ${MaxTol_1} > ${MaxTol} } {
puts "Faulty : bad tolerance"
} else {
puts "OK : good tolerance"
}