1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
2022-06-23 20:29:00 +03:00

24 lines
527 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 }
XOpen ${filename} D_First
XGetOneShape S_First D_First
set file_path ${imagedir}/${casename}.xbf
WriteFile D_First $file_path -conf "provider.XCAF.OCC.append : 1 "
XOpen $file_path D_Second
XGetOneShape S_Second D_Second
checknbshapes S_Second -ref [nbshapes S_First]
file delete $file_path
Close D_First
Close D_Second