1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
ika 7644c7f4a1 0027304: Implemetation of descriptions for Dimensions
- Add poles with array of descriptions and description names to DimensionObject,
- Modify Import/Export STEP,
- Add Draw commands for descriptions,
- Create test,
- Reorganize end script for test/gdt/dimensions.
2016-04-08 11:50:53 +03:00

34 lines
808 B
Plaintext

# test text descriptions
box b 10 10 10
explode b e
NewDocument D_init
XAddShape D_init b
XAddDimension D_init b_1
#0:1:4:1
XSetDimensionType D_init 0:1:4:1 14
XSetDimensionValue D_init 0:1:4:1 10
XAddDimensionDescr D_init 0:1:4:1 description1
XAddDimensionDescr D_init 0:1:4:1 description2 name2
# Export
set isOK 1
if { [catch { WriteStep D_init $imagedir/${casename}_D_init.stp } catch_result] } {
puts "Error: File was not written - exception"
set isOK 0
}
# Import
if {$isOK} {
if { [catch { ReadStep D $imagedir/${casename}_D_init.stp } catch_result] } {
puts "Error: File was not read - exception"
set isOK 0
}
}
# Reference data
if {$isOK} {
set c_value "10"
set c_type "Size_CurveLength"
set c_descr {name: description: description1
name: name2 description: description2
}
}