mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
STEPCAFControl_Reader::SourceCodePage() - added property defining text encoding for converting names within STEPCAFControl_Reader::ReadNames() method. Added associated "read.stepcaf.codepage" parameter, which default value is Resource_UTF8, preserving current behavior. Resource_FormatType enumeration has been extended by UTF8 and SystemLocale values. Resource_Unicode - added conversion methods taking Resource_FormatType as argument. GetName command has been corrected to NOT replace non-Latin symbols.
23 lines
570 B
Plaintext
Executable File
23 lines
570 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC26342"
|
|
puts "============"
|
|
puts ""
|
|
|
|
#######################################################################
|
|
# No materials are read from STEP
|
|
#######################################################################
|
|
|
|
pload DCAF
|
|
|
|
ReadStep D [locate_data_file OCC23251-dm1-oc-214.stp]
|
|
|
|
set dump_info [ XDumpDF D ]
|
|
|
|
set XCAFDoc_Material_ID "efd212f8-6dfd-11d4-b9c8-0060b0ee281b"
|
|
|
|
if { [regexp ${XCAFDoc_Material_ID} ${dump_info}] == 1 } {
|
|
puts "OK: materials are read from STEP"
|
|
} else {
|
|
puts "Error : No materials are read from STEP"
|
|
}
|