1 .. |recover.icon| image:: images/recover.png
6 **Recover** feature restores some objects used in previous operations.
8 To recover in the active part:
10 #. select in the Main Menu *Features - > Recover* item or
11 #. click |recover.icon| **Recover** button in the toolbar
13 The feature has the following options:
15 .. figure:: images/recover_default_32x32.png
19 restore only the objects used in the operation
21 .. figure:: images/recover_compound_32x32.png
25 restore full compound/compsolid if the operation used one or more of its sub-shapes
27 --------------------------------------------------------------------------------
32 .. figure:: images/recover_mode_default.png
35 Recover objects used in operation
37 - **Feature** field contains one of the previous operations;
38 - **List of recovered** objects contains all the shapes used in the operation. Need to enable checkbox to restore a shape.
42 .. py:function:: model.addRecover(Part_doc, feature, [recovering_results])
44 :param part: The current part object.
45 :param string: The name of the feature.
46 :param list: A list of results used in the feature.
47 :return: Created object.
52 Result of restoring the shape used in Split operation in compsolid is a single solid.
54 .. figure:: images/recover_res_default.png
59 **See also** a sample TUI script of ref:`tui_recover_default` operation.
62 Recover top-level objects
63 -------------------------
65 .. figure:: images/recover_mode_compound.png
68 Recover top-level compounds/compsolids of objects used in operation
70 - **Feature** field contains one of the previous operations;
71 - **List of recovered** objects contains all top-level shapes (compounds/compsolids) of the shapes used in the operation. Need to enable checkbox to restore a shape.
75 .. py:function:: model.addRecover(Part_doc, feature, [recovering_results], True)
77 :param part: The current part object.
78 :param string: The name of the feature.
79 :param list: A list of results used in the feature.
80 :param boolean: *True* to specify restoring compounds.
81 :return: Created object.
86 Result of restoring the shape used in Split operation in compsolid is a full compsolid.
88 .. figure:: images/recover_res_compound.png
93 **See also** a sample TUI script of ref:`tui_recover_compound` operation.