mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Make modification to save in the file part of the XCAF document starting from specified label. If specified label is component of the high-level assembly then high-level assembly is saved in document with one specified component. In other case only part of the document starting from the specified label is saved.
29 lines
709 B
Plaintext
29 lines
709 B
Plaintext
pload DCAF
|
|
pload TOPTEST
|
|
pload XDE
|
|
puts "========"
|
|
puts "OCC26657"
|
|
puts "========"
|
|
puts ""
|
|
##########################################################################
|
|
# STEP OCAF writers should keep hierarchy and colors when saving non-root elements
|
|
##########################################################################
|
|
pload XDEDRAW
|
|
ReadStep D1 [locate_data_file bug26657.stp]
|
|
WriteStep D1 $imagedir/bug26657_temp.stp a 0:1:1:1:2
|
|
if { [catch { Close D11 } catch_result] } {
|
|
puts "Document D11 is not exist"
|
|
}
|
|
|
|
ReadStep D11 $imagedir/bug26657_temp.stp
|
|
XGetOneShape result D11
|
|
checkshape result f
|
|
|
|
Close D1
|
|
checknbshapes result -solid 3
|
|
XShow D11
|
|
vfit
|
|
vsetdispmode 1
|
|
vdump $imagedir/${test_image}.png
|
|
|