]> SALOME platform Git repositories - modules/shaper.git/blob - src/FeaturesPlugin/doc/splitFeature.rst
Salome HOME
Merge branch 'master' into cgt/split
[modules/shaper.git] / src / FeaturesPlugin / doc / splitFeature.rst
1
2 Split
3 =====
4
5 Split feature implements a Boolean operation splitting of main objects by parts of tool objects.
6
7 To perform Split in the active part:
8
9 #. select in the Main Menu *Features - > Split* item  or
10 #. click **Split** button in the toolbar
11
12 .. image:: images/bool_split.png
13    :align: center
14
15 .. centered::
16    **Split**  button 
17
18 The following property panel will be opened:
19
20 .. image:: images/Split.png
21   :align: center
22
23 .. centered::
24    **Split operation**
25
26 - **Main Objects** contains a list of objects selected in the Object Browser or in the Viewer, which will be cut and splitted by tool objects.
27 - **Tool Objects** contains a list of objects selected in the Object Browser or in the Viewer, which will cut and split the main objects.
28 - **See preview** button shows a result of the operation.
29
30 **TUI Command**:  *model.addSplit(Part_doc, mainObjects, toolObjects)*
31
32 **Arguments**:   Part + list of main objects + list of tool objects.
33
34 Result
35 """"""
36
37 The Result of the operation will be a shape, which is a split of tool objects with main objects:
38
39 .. image:: images/CreatedSplit.png
40            :align: center
41
42 .. centered::
43    **Split created**
44
45 **See Also** a sample TUI Script of :ref:`tui_create_bool_split` operation.