1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/heal/bug24549
dpasukhi bd651bbbd9 0033531: Configuration - Rework DataExchange ToolKits organization
Integrated DE plugin functionality.
Reworked DE components:
 - TKDESTEP: Handling STEP file format.
 - TKDEOBJ: Handling OBJ file format.
 - TKDEIGES: Handling IGES file format.
 - TKDEGLTF: Handling GLTF file format.
 - TKDEVRML: Handling VRML file format.
 - TKDEPLY: Handling PLY file format.
 - TKDESTL: Handling STL file format.
Reworked DE DRAW components:
  TKXSDRAWSTEP: Container for DE command to work with STEP.
  TKXSDRAWOBJ: Container for DE command to work with OBJ.
  TKXSDRAWIGES: Container for DE command to work with IGES.
  TKXSDRAWGLTF: Container for DE command to work with GLTF.
  TKXSDRAWVRML: Container for DE command to work with VRML.
  TKXSDRAWPLY: Container for DE command to work with PLY.
  TKXSDRAWSTL: Container for DE command to work with STL.
TKXSDRAW rework to be base DRAW plugin to keep DE session and utils.
Updated documentation
Updated samples
2023-12-04 15:52:47 +00:00

26 lines
630 B
Plaintext

puts "============"
puts "OCC24549"
puts "============"
puts ""
#######################################################################
## Faulty shape after IGES translation with xstep.cascade.unit set to M
#######################################################################
pload DATAEXCHANGEKERNEL IGES
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"
}