--- /dev/null
+
+ .. _tui_create_face:
+
+Create Face
+===========
+
+.. literalinclude:: examples/face.py
+ :linenos:
+ :language: python
+
+:download:`Download this script <examples/face.py>`
+
--- /dev/null
+
+ .. _tui_create_shell:
+
+Create Shell
+============
+
+.. literalinclude:: examples/shell.py
+ :linenos:
+ :language: python
+
+:download:`Download this script <examples/shell.py>`
+
--- /dev/null
+
+ .. _tui_create_solid:
+
+Create Solid
+============
+
+.. literalinclude:: examples/solid.py
+ :linenos:
+ :language: python
+
+:download:`Download this script <examples/solid.py>`
+
--- /dev/null
+
+ .. _tui_create_wire:
+
+Create Wire
+===========
+
+.. literalinclude:: examples/wire.py
+ :linenos:
+ :language: python
+
+:download:`Download this script <examples/wire.py>`
+
--- /dev/null
+# -*- coding: utf-8 -*-
+
+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)
+Face_1 = model.addFace(Part_1_doc, [model.selection("FACE", "Box_1_1/Top"),
+ model.selection("FACE", "Box_1_1/Front")])
+model.do()
+model.end()
--- /dev/null
+# -*- coding: utf-8 -*-
+
+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)
+Shell_1 = model.addShell(Part_1_doc, [model.selection("FACE", "Box_1_1/Top"),
+ model.selection("FACE", "Box_1_1/Front")])
+model.do()
+model.end()
--- /dev/null
+# -*- coding: utf-8 -*-
+
+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)
+Solid_1_objects = [model.selection("FACE", "Box_1_1/Top"),
+ model.selection("FACE", "Box_1_1/Front"),
+ model.selection("FACE", "Box_1_1/Left"),
+ model.selection("FACE", "Box_1_1/Back"),
+ model.selection("FACE", "Box_1_1/Right"),
+ model.selection("FACE", "Box_1_1/Bottom")]
+Solid_1 = model.addSolid(Part_1_doc, Solid_1_objects)
+model.do()
+model.end()
--- /dev/null
+# -*- coding: utf-8 -*-
+
+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)
+Wire_1_objects = [model.selection("EDGE", "Box_1_1/Left&Box_1_1/Top"),
+ model.selection("EDGE", "Box_1_1/Front&Box_1_1/Top"),
+ model.selection("EDGE", "Box_1_1/Right&Box_1_1/Top"),
+ model.selection("EDGE", "Box_1_1/Back&Box_1_1/Top")]
+Wire_1 = model.addWire(Part_1_doc, Wire_1_objects)
+model.do()
+model.end()
Face
====
+To create face in the active part:
+#. select in the Main Menu *Build - > Face* item or
+#. click **Face** button in the toolbar
+
+.. image:: images/feature_face.png
+ :align: center
+
+.. centered::
+ **Face** button
+
+The following property panel will be opened:
+
.. image:: images/Face.png
:align: center
.. centered::
Create a face
+
+Select one or several faces in viewer.
+
+**Apply** button creates faces.
+
+**Cancel** button cancels operation.
+
+The result of the operation will be set of faces created from selected shapes:
+
+.. image:: images/CreateFace.png
+ :align: center
+
+.. centered::
+ Result of the operation.
+
+**See Also** a sample TUI Script of a :ref:`tui_create_face` operation.
Shell
=====
+To create shell in the active part:
+
+#. select in the Main Menu *Build - > Shell* item or
+#. click **Shell** button in the toolbar
+
+.. image:: images/feature_shell.png
+ :align: center
+
+.. centered::
+ **Shell** button
+
+The following property panel will be opened:
.. image:: images/Shell.png
:align: center
.. centered::
Create a shell
+
+Select one or several faces in viewer.
+
+**Apply** button creates a shell.
+
+**Cancel** button cancels operation.
+
+The result of the operation will be shell created from selected shapes:
+
+.. image:: images/CreateShell.png
+ :align: center
+
+.. centered::
+ Result of the operation.
+
+**See Also** a sample TUI Script of a :ref:`tui_create_shell` operation.
Solid
=====
+To create solid in the active part:
+
+#. select in the Main Menu *Build - > Solid* item or
+#. click **Solid** button in the toolbar
+
+.. image:: images/feature_solid.png
+ :align: center
+
+.. centered::
+ **Solid** button
+
+The following property panel will be opened:
.. image:: images/Solid.png
:align: center
.. centered::
Create a solid
+
+Select one or several faces in viewer. Selected faces have to define a closed volume
+
+**Apply** button creates solid.
+
+**Cancel** button cancels operation.
+
+The result of the operation will be a solid created from selected shapes:
+
+.. image:: images/CreateSolid.png
+ :align: center
+
+.. centered::
+ Result of the operation.
+
+**See Also** a sample TUI Script of a :ref:`tui_create_solid` operation.
Wire
====
+To create wire in the active part:
+
+#. select in the Main Menu *Build - > Wire* item or
+#. click **Wire** button in the toolbar
+
+.. image:: images/feature_wire.png
+ :align: center
+
+.. centered::
+ **Wire** button
+
+The following property panel will be opened:
.. image:: images/Wire.png
:align: center
.. centered::
Create a wire
+
+Select one or several edges in viewer. For automatic selection of closed contour starting from a selected edge it is necessary to press **Add contour** button.
+
+**Apply** button creates wire.
+
+**Cancel** button cancels operation.
+
+The result of the operation will be a wire created from selected shapes:
+
+.. image:: images/CreateWire.png
+ :align: center
+
+.. centered::
+ Result of the operation.
+
+**See Also** a sample TUI Script of a :ref:`tui_create_wire` operation.