mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
pcurve as line isn't created to avoid incorrect parameterization Test case for issue CR24549 Test cases were corrected according to their new behavior
26 lines
625 B
Plaintext
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"
|
|
}
|