mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
24 lines
537 B
Plaintext
24 lines
537 B
Plaintext
puts "============"
|
|
puts "0032821: DEWrapper - Implementation of a common toolkit for importing and exporting CAD files"
|
|
puts "============"
|
|
puts ""
|
|
|
|
catch { Close D_First }
|
|
catch { Close D_Second }
|
|
|
|
ReadGltf D_First ${filename}
|
|
XGetOneShape S_First D_First
|
|
|
|
set file_path ${imagedir}/${casename}.gltf
|
|
|
|
WriteFile D_First $file_path -conf "provider.GLTF.OCC.author: GLTF_AUTHOR "
|
|
|
|
ReadGltf D_Second $file_path
|
|
XGetOneShape S_Second D_Second
|
|
|
|
checktrinfo S_Second -ref [trinfo S_First]
|
|
|
|
file delete $file_path
|
|
Close D_First
|
|
Close D_Second
|