1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/xde/bug22962
dpasukhi da80ff68f1 0031382: Data Exchange - BinXCAF should preserve length unit information
Possibility for adding LengthUnit info to XCAF document using special class XCAFDoc_LenghtUnit and XCAFDoc_LenghtUnitTool is implemented.
Package UnitsMethods is split: geom methods were placed to new file GeomConvert_Units which is in the toolkit TKXSBase, internal step scale factors was placed to StepData.
Updated UnitMethods to convert scale factor to different unit types.
Now, XSAlgo::XSAlgo_AlgoContainer is used to update unit info from static interface values.
New Draw command "XSetLengthUnit" and "XGetLengthUnit" for set or get XDE attribute.
Upgraded tests for STEP, IGES, OBJ, glTF, VRML formats to check area regressing with used unit.
Upgraded tests\de test cases to use any units in the "loop back" algorithms.
2021-08-20 20:30:11 +03:00

24 lines
609 B
Plaintext
Executable File

puts "============"
puts "OCC22962"
puts "============"
puts ""
#######################################################################
# Invalid realization of reading and writing material in STEP
#######################################################################
set BugNumber OCC22962
set check_value 97
pload DCAF
ReadStep D1 [locate_data_file OCC22962-dm1-oc-214.stp]
set dump_info [ XDumpDF D1 ]
regexp {attributes dumped between ([-0-9.+eE]+)} ${dump_info} full a1
set c1 [string compare $a1 $check_value]
if { $c1 != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}