1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/xde/bug29821
ika f277ba3771 0029821: Data Exchange - Wrong processing of subshapes in ShapeTool
Improve FindSubShape method in ShapeTool.
Update Expand compounds, according to changes in ShapeTool.
Add FindSubShape and AddSubShape commands for Draw.
2018-06-14 14:03:07 +03:00

48 lines
1018 B
Plaintext

puts "=========="
puts "OCC29821"
puts "=========="
puts ""
#############################################
# Wrong processing of subshapes in ShapeTool
#############################################
pload ALL
# create test document
box b 1 1 1
box bb 2 0 0 1 1 1
compound b bb c
XNewDoc D
XAddShape D c 0
# 0:1:1:1
XAddShape D b
# 0:1:1:2
explode b f
# b_1 b_2 b_3 b_4 b_5 b_6
XAddSubShape D b_1 0:1:1:1
# 0:1:1:1:1
XAddSubShape D b_1 0:1:1:2
# 0:1:1:2:1
# FindSubShape check
set first_find1 [XFindSubShape D b_1 0:1:1:1]
if {$first_find1 != "0:1:1:1:1"} {
puts "Error: wrong subshape is found"
}
set first_find2 [XFindSubShape D b_1 0:1:1:2]
if {$first_find2 != "0:1:1:2:1"} {
puts "Error: wrong subshape is found"
}
# FindSubShape check#2
ForgetAll D 0:1:1:1:1
set second_find1 [XFindSubShape D b_1 0:1:1:1]
if {$second_find1 != ""} {
puts "Error: wrong subshape is found"
}
set second_find2 [XFindSubShape D b_1 0:1:1:2]
if {$second_find2 != "0:1:1:2:1"} {
puts "Error: wrong subshape is found"
}
Close D