Salome HOME
Adding test for bos #41748 [CEA] Issue in interpolation edition
[modules/shaper.git] / src / BuildPlugin / doc / solidFeature.rst
index 4e78a14302148229379ff7ddfb34087c93d8b72c..69fa7a34108396a63869833bbee6cffef31b7d52 100644 (file)
@@ -1,10 +1,44 @@
+.. |feature_solid.icon|    image:: images/feature_solid.png
 
 Solid
 =====
 
+Solid feature creates a solid using faces already existing in other objects.
 
-.. image:: images/Solid.png
+To create a solid in the active part:
+
+#. select in the Main Menu *Build - > Solid* item  or
+#. click |feature_solid.icon| **Solid** button in the toolbar
+
+The following property panel will be opened:
+
+.. figure:: images/Solid.png
   :align: center
 
-.. centered::
   Create a solid
+  
+Select one or several faces in the viewer. The selected faces have to define a closed volume.
+
+**Apply** button creates a solid.
+
+**Cancel** button cancels the operation. 
+
+**TUI Command**:
+
+.. py:function:: model.addSolid(Part_doc, Shapes)
+
+    :param part: The current part object.
+    :param list: A list of shapes.
+    :return: Result object.
+
+Result
+""""""
+
+The result of the operation will be a solid created from the selected shapes:
+
+.. figure:: images/CreateSolid.png
+  :align: center
+
+  Result of the operation.
+
+**See Also** a sample TUI Script of :ref:`tui_create_solid` operation.