Update documentation of Recover feature.
--- /dev/null
+
+ .. _tui_recover_compound:
+
+Recover
+=======
+
+.. literalinclude:: examples/recover_compound.py
+ :linenos:
+ :language: python
+
+:download:`Download this script <examples/recover_compound.py>`
+
--- /dev/null
+
+ .. _tui_recover_default:
+
+Recover
+=======
+
+.. literalinclude:: examples/recover_default.py
+ :linenos:
+ :language: python
+
+:download:`Download this script <examples/recover_default.py>`
+
--- /dev/null
+from salome.shaper import model
+
+model.begin()
+partSet = model.moduleDocument()
+Part_1 = model.addPart(partSet)
+Part_1_doc = Part_1.document()
+Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
+Plane_4 = model.addPlane(Part_1_doc, model.selection("FACE", "Box_1_1/Left"), model.selection("FACE", "Box_1_1/Right"))
+Plane_5 = model.addPlane(Part_1_doc, model.selection("FACE", "Box_1_1/Front"), model.selection("FACE", "Box_1_1/Back"))
+Split_1 = model.addSplit(Part_1_doc, [model.selection("SOLID", "Box_1_1")], [model.selection("FACE", "Plane_1")])
+Split_2 = model.addSplit(Part_1_doc, [model.selection("SOLID", "Split_1_1_1")], [model.selection("FACE", "Plane_2")])
+Recover_1 = model.addRecover(Part_1_doc, Split_2, [Split_1.result()], True)
+model.end()
--- /dev/null
+from salome.shaper import model
+
+model.begin()
+partSet = model.moduleDocument()
+Part_1 = model.addPart(partSet)
+Part_1_doc = Part_1.document()
+Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
+Plane_4 = model.addPlane(Part_1_doc, model.selection("FACE", "Box_1_1/Left"), model.selection("FACE", "Box_1_1/Right"))
+Plane_5 = model.addPlane(Part_1_doc, model.selection("FACE", "Box_1_1/Front"), model.selection("FACE", "Box_1_1/Back"))
+Split_1 = model.addSplit(Part_1_doc, [model.selection("SOLID", "Box_1_1")], [model.selection("FACE", "Plane_1")])
+Split_2 = model.addSplit(Part_1_doc, [model.selection("SOLID", "Split_1_1_1")], [model.selection("FACE", "Plane_2")])
+Recover_1 = model.addRecover(Part_1_doc, Split_2, [Split_1.result().subResult(0)])
+model.end()
- Recover
- =======
+Recover
+=======
+**Recover** feature restores some objects used in previous operations.
-.. image:: images/Recover.png
- :align: center
+To recover in the active part:
+
+#. select in the Main Menu *Features - > Recover* item or
+#. click **Recover** button in the toolbar
+
+.. image:: images/recover.png
+ :align: center
.. centered::
- Recover operation
+ **Recover** button
+
+The feature has the following options:
+
+.. image:: images/recover_default_32x32.png
+ :align: left
+restore only the objects used in the operation
+
+.. image:: images/recover_compound_32x32.png
+ :align: left
+restore full compound/compsolid if the operation used one or more of its sub-shapes
+
+
+Recover objects
+---------------
+
+.. image:: images/recover_mode_default.png
+ :align: center
+
+.. centered::
+ Recover objects used in operation
+
+- **Feature** field contains one of the previous operations;
+- **List of recovered** objects contains all the shapes used in the operation. Need to enable checkbox to restore a shape.
+
+**TUI Command**: *model.addRecover(Part_doc, feature, [recovering_results])*
+
+**Arguments**: part + the name of the feature + list of results used in the feature.
+
+Result
+""""""
+
+Result of restoring the shape used in Split operation in compsolid is a single solid.
+
+.. image:: images/recover_res_default.png
+ :align: center
+
+.. centered::
+ Recover a solid
+
+**See also** a sample TUI script of ref:`tui_recover_default` operation.
+
+
+Recover top-level objects
+-------------------------
+
+.. image:: images/recover_mode_compound.png
+ :align: center
+
+.. centered::
+ Recover top-level compounds/compsolids of objects used in operation
+
+- **Feature** field contains one of the previous operations;
+- **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.
+
+**TUI Command**: *model.addRecover(Part_doc, feature, [recovering_results], True)*
+
+**Arguments**: part + the name of the feature + list of results used in the feature + *True* to specify restoring compounds.
+
+Result
+""""""
+
+Result of restoring the shape used in Split operation in compsolid is a full compsolid.
+
+.. image:: images/recover_res_compound.png
+ :align: center
+
+.. centered::
+ Recover a compsolid
+
+**See also** a sample TUI script of ref:`tui_recover_compound` operation.