mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
21 lines
424 B
Plaintext
21 lines
424 B
Plaintext
puts "============"
|
|
puts "0032821: DEWrapper - Implementation of a common toolkit for importing and exporting CAD files"
|
|
puts "============"
|
|
puts ""
|
|
|
|
catch { Close D_First }
|
|
|
|
readbrep ${filename} S_First
|
|
|
|
set file_path ${imagedir}/${casename}.brep
|
|
|
|
writefile S_First $file_path
|
|
|
|
ReadFile D_First $file_path
|
|
XGetOneShape S_Second D_First
|
|
|
|
checknbshapes S_Second -ref [nbshapes S_First]
|
|
|
|
file delete $file_path
|
|
Close D_First
|