Salome HOME
Change icons for chamfer
[modules/shaper.git] / src / SketchPlugin / doc / splitFeature.rst
1 .. |split.icon|    image:: images/split.png
2
3 Split
4 =====
5
6 | The Split operation splits sketch curve into multiple segments.
7 | The curve should have points lying on it.
8 | Open curves (line or arc) require one or more points to split with; closed curves (circle) require two or more points.
9
10 To create a Split in the active Sketch:
11
12 #. select in the Main Menu *Sketch - > Split* item  or
13 #. click |split.icon| **Split** button in Sketch toolbar:
14
15 Property panel:
16
17 .. image:: images/Split_panel.png
18   :align: center
19
20 .. centered::
21    Split
22
23 Input fields:
24
25 - **Segment** is used to select a segment to be split off in the view.
26
27 The selected segment is highlighted in the view:
28
29 .. image:: images/Split_segment_sel.png
30    :align: center
31
32 .. centered::
33    The segment to split off
34
35 **TUI Command**:
36
37 .. py:function:: Sketch_1.addSplit(Feature, PositionPoint)
38
39     :param object: Line, arc or circle.
40     :param object: Position point (a point on the segment to split off or closest to it).
41     :return: Result object.
42
43 Result
44 """"""
45
46 Created Split appears in the view.
47
48 .. image:: images/Split_res.png
49            :align: center
50
51 .. centered::
52    Created split 
53
54 **See Also** a sample TUI Script of :ref:`tui_create_split` operation.