X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2Fdoc%2FintersectionFeature.rst;h=41abaeb420a5d27d23eec1ad5b037f0523dac381;hb=bcd96990e1fca77402d522bc8b095ebfa1091894;hp=f0998acaff04c2caffb2af4d270f1183defb1225;hpb=547a3952b37fe76f0d4e031a7d8a943ac6a45bb5;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/doc/intersectionFeature.rst b/src/SketchPlugin/doc/intersectionFeature.rst index f0998acaf..41abaeb42 100644 --- a/src/SketchPlugin/doc/intersectionFeature.rst +++ b/src/SketchPlugin/doc/intersectionFeature.rst @@ -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.