Salome HOME
Corrections for the user's manual from the English language point of view
[modules/shaper.git] / src / SketchPlugin / doc / intersectionFeature.rst
index f0998acaff04c2caffb2af4d270f1183defb1225..41abaeb420a5d27d23eec1ad5b037f0523dac381 100644 (file)
@@ -2,9 +2,52 @@
 Intersection
 ============
 
+| The Intersection operation creates an intersection of a 3D edge and the sketch plane.
+| The result of the intersection is a point.
 
-.. image:: images/Intersection.png
+To create an Intersection in the active Sketch:
+
+#. select in the Main Menu *Sketch - > Intersection* item  or
+#. click **Intersection** button in Sketch toolbar:
+
+.. image:: images/intersection.png
+   :align: center
+
+.. centered::
+   **Intersection**  button
+
+Property panel:
+
+.. image:: images/Intersection_panel.png
   :align: center
 
 .. centered::
-  Create an intersection
+   Intersection
+
+Input fields:
+
+- **Object** is the 3D edge to intersect with the sketch plane.
+- **Include into the sketch result** option defines whether to include the intersection point into the sketch result.
+
+**TUI Command**:
+
+- *Sketch_1.addIntersectionPoint(Edge, IncludeIntoResult)*
+
+  **Arguments**: Edge and include into the result flag
+
+- *Sketch_1.addIntersectionPoint(EdgeName, IncludeIntoResult)*
+
+  **Arguments**: Edge name and include into the result flag
+
+Result
+""""""
+
+Created Intersection appears in the view.
+
+.. image:: images/Intersection_res.png
+          :align: center
+
+.. centered::
+   Created intersection (purple point)
+
+**See Also** a sample TUI Script of :ref:`tui_create_intersection` operation.