mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- Implement top-down update for assemblies in XCAFDoc_ShapeTool - Get rid of UpdateAssembly() method used for partial (parent-only) update - Adjust STEP and IGES translators to use the top-down update after filling OCAF - Implement XUpdateAssemblies Draw command - Add test cases bug28055_1 and bug28055_2 for component removal and part update - Update XDE documentation to mention the new UpdateAssemblies() method Correction for issue CR28055 Adjusting of test case bugs/fclasses/bug28217
30 lines
831 B
Plaintext
30 lines
831 B
Plaintext
puts "============"
|
|
puts "CR28055"
|
|
puts "============"
|
|
puts ""
|
|
|
|
##########################################################################
|
|
# Add UpdateAssemblies() method for top-down update of assembly compounds
|
|
##########################################################################
|
|
|
|
ReadStep d [locate_data_file trj3_as1-tc-214.stp]
|
|
XShow d
|
|
vfit
|
|
vsetdispmode 1
|
|
|
|
# First check verifies that originally there is 18 solid instances
|
|
XGetOneShape model_before d
|
|
checknbshapes model_before -solid 18 -t
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${::casename}_1.png
|
|
|
|
XRemoveComponent d 0:1:1:1:1
|
|
XUpdateAssemblies d
|
|
XShow d
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${::casename}_2.png
|
|
|
|
# Second check verifies that after component removal 7 instances go away
|
|
XGetOneShape model_after d
|
|
checknbshapes model_after -solid 11 -t
|