1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/step/bug30189_2
ika 87efa821fa 0030189: Data Exchange - Wrong export to STEP of located root.
Now roots-references in XCAF Document can be exported to STEP without losing structure of assembly/sharing/metadata of this root. New auxiliary root assembly with each root-reference is created to save all necessary data.
2018-10-04 17:57:13 +03:00

39 lines
809 B
Plaintext

########################################
# Wrong export to STEP of located root.
########################################
pload OCAF
XNewDoc D
box b 1 1 1
box bb 2 0 0 1 1 1
box bbb 4 0 0 1 1 1
compound b bb c
copy c cc
ttranslate cc 0 2 0
compound bbb c s
XAddShape D s
XAddShape D cc
WriteStep D $imagedir/${casename}.stp
ReadStep DD $imagedir/${casename}.stp
# Check structure
set top_level [XGetTopLevelShapes DD]
if {$top_level != "0:1:1:1 0:1:1:2 0:1:1:3 0:1:1:4 0:1:1:5 0:1:1:6 "} {
puts "Error: wrong structure of document."
}
# Check sharing
set nb [XNbComponents DD 0:1:1:6]
if {$nb != "1"} {
puts "Error: wrong structure of document."
}
set nb [XGetUsers DD 0:1:1:3]
if {$nb != "2"} {
puts "Error: wrong structure of document."
}
Close D
Close DD
file delete $imagedir/${casename}.stp