mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Fixed problem with pure referencing. To export reference label to step we convert it to the assembly with one part. All attributes attached to the label should be moved to the new part. For working with it new map contains only pure reference labels, that converted to the part was implemented to the STEPCAFControl_Writer. Updated code style of the STEPCAFControl_Writer Improved ability to export labels from different documents Removed OCCT_Debug macros to print in Trace gravity
33 lines
725 B
Plaintext
33 lines
725 B
Plaintext
puts "========================"
|
|
puts "0033317: Data Exchange, Step Export - Ignoring color attached to the reference shape label"
|
|
puts "========================"
|
|
|
|
pload OCAF
|
|
|
|
Close D -silent
|
|
Close D1 -silent
|
|
|
|
set TempFilename ${imagedir}/${casename}_temp.stp
|
|
|
|
# Open document
|
|
XOpen [locate_data_file bug33317_solids_7_7_0.xml] D
|
|
|
|
# Get colors
|
|
set colors_old [XGetShapeColor D 0:1:1:1 generic]
|
|
|
|
# Write to STEP
|
|
WriteStep D ${TempFilename}
|
|
|
|
# Read and check
|
|
ReadStep D1 ${TempFilename}
|
|
|
|
set colors_new [XGetShapeColor D1 0:1:1:1:1 generic]
|
|
if { [string equal ${colors_new} ${colors_old}] == -1 } {
|
|
puts "ERROR: OCC33317 is reproduced while STEP export."
|
|
}
|
|
|
|
# Clear temp file
|
|
file delete -force $TempFilename
|
|
Close D
|
|
Close D1
|