X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBuildPlugin%2Fdoc%2FsolidFeature.rst;h=e374577be10f3c6729bdf4a6894536bc75f2d9fc;hb=0fcd69345a4dfdb31e252574c68bc70e123999e8;hp=4e78a14302148229379ff7ddfb34087c93d8b72c;hpb=1e2eaa713f139d2617c80eba9ede62d4e9976bb7;p=modules%2Fshaper.git diff --git a/src/BuildPlugin/doc/solidFeature.rst b/src/BuildPlugin/doc/solidFeature.rst index 4e78a1430..e374577be 100644 --- a/src/BuildPlugin/doc/solidFeature.rst +++ b/src/BuildPlugin/doc/solidFeature.rst @@ -1,10 +1,46 @@ +.. |feature_solid.icon| image:: images/feature_solid.png Solid ===== +Solid feature creates a solid using faces already existing in other objects. + +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: .. image:: 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: + +.. image:: images/CreateSolid.png + :align: center + +.. centered:: + Result of the operation. + +**See Also** a sample TUI Script of :ref:`tui_create_solid` operation.