mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Changes for using Axis Placement(not used during creation of assembly) as transformation for root Shape Representation. Test for bug 29068 and auxilary command are added.
31 lines
679 B
Plaintext
31 lines
679 B
Plaintext
puts "========"
|
|
puts "OCC29068"
|
|
puts "========"
|
|
puts ""
|
|
##########################################################################
|
|
# Invalid rotation of shape after import STEP file
|
|
##########################################################################
|
|
|
|
stepread [locate_data_file bug29068.stp] a *
|
|
#stepread bug29068.stp a *
|
|
|
|
checkshape a_1
|
|
|
|
set nbshapes_expected "
|
|
Number of shapes in shape
|
|
VERTEX : 2955
|
|
EDGE : 4576
|
|
WIRE : 1970
|
|
FACE : 1793
|
|
SHELL : 54
|
|
SOLID : 0
|
|
COMPSOLID : 0
|
|
COMPOUND : 1
|
|
SHAPE : 11349
|
|
"
|
|
checknbshapes a_1 -ref ${nbshapes_expected} -t -m "importing file"
|
|
|
|
checkgravitycenter a_1 -v 36.7307 -14.513 0.0157913 0.001
|
|
|
|
|