mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Class STEPCAFControl_Writer is corrected to avoid replacing non-Ascii symbols by question marks, and spaces by underscores, on export to STEP. Related: DRAW commands dealing with strings in OCAF documents are corrected to pass Unicode symbols as UTF-8. Off-topic: code saving names of external STEP files in XDE and fetching them back is corrected to preserve Unicode symbols as UTF-8. Added test bugs xde bug31851 Test de step_4 E7 corrected (no more replacement of spaces by underscores in names of layers)
20 lines
657 B
Plaintext
20 lines
657 B
Plaintext
puts "# =============================================================================="
|
|
puts "# 0031851: Data Exchange, STEP - enable Unicode symbols in STEP export"
|
|
puts "# =============================================================================="
|
|
|
|
pload OCAF XDE MODELING
|
|
|
|
puts "# Generate XDE document with a solid having name encoded in Japanese"
|
|
set name "\u30DC\u30C3\u30AF\u30B9" ;# "box"
|
|
box box 10 10 10
|
|
NewDocument D XCAF
|
|
SetName D [XAddShape D box] $name
|
|
|
|
WriteStep D $imagedir/${casename}.stp
|
|
ReadStep T $imagedir/${casename}.stp
|
|
|
|
set result [GetName T 0:1:1:1]
|
|
if { $result != $name } {
|
|
puts "Error: name has been lost on conversion"
|
|
}
|