mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
22 lines
432 B
Plaintext
22 lines
432 B
Plaintext
puts "============"
|
|
puts "0032821: DEWrapper - Implementation of a common toolkit for importing and exporting CAD files"
|
|
puts "============"
|
|
puts ""
|
|
|
|
catch { Close D_First }
|
|
|
|
loadvrml S_First ${filename}
|
|
XNewDoc D_First
|
|
XAddShape D_First S_First
|
|
|
|
set file_path ${imagedir}/${casename}.vrml
|
|
|
|
WriteVrml D_First $file_path
|
|
|
|
readfile S_Second $file_path
|
|
|
|
checktrinfo S_Second -ref [trinfo S_First]
|
|
|
|
file delete $file_path
|
|
Close D_First
|