Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / doc / salome / gui / GEOM / input / creating_arc.doc
1 /*!
2
3 \page create_arc_page Arc
4
5 To create an \b Arc in the <b>Main Menu</b> select <b>New Entity - >
6 Basic - > Arc</b>
7
8 \n There are 2 algorithms to create an \b Arc in the 3D space.
9 \n The \b Result of each operation will be a GEOM_Object (edge).
10
11 \n Firstly, you can define an \b Arc by three \b Points that lie on it,
12 where Point1 is the starting point, Point2 is a middle point of the
13 arc and Point3 is the ending point of the arc.
14 \n <b>TUI Command:</b> <em>geompy.MakeArc(Point1, Point2, Point3)</em>
15 \n <b>Arguments:</b> Name + 3 vertices.
16
17 \image html arc.png
18
19 \n Secondly, you can define an \b Arc by \b Center, \b Start and \b End
20 points. The arc is built from the \b Start point to the \b End point. The
21 radius of the arc is defined by the distance between the \b Center point
22 and the \b Start point. The \b End point defines the angle of the arc. If
23 the distance between the \b Center point and the \b End point is not equal
24 to the radius, the arc will be built anyway.
25 \n \b Reverse radio button allows to change the direction of the arc.
26 \n <b>TUI Command:</b> <em>geompy.MakeArcCenter(Center Point, Start
27 Point, End Point, boolean Sense)</em>
28 \n <b>Arguments:</b> Name + 3 vertices + Boolean.
29
30 \image html arc2.png
31
32 \n <b>Examples:</b>
33
34 \image html arcsn.png
35 <center>Arc by three points lying on it.</center>
36
37 \image html arcsn1.png
38 <center>Arc by Start, End and Center.</center>
39
40 \image html arcsn2.png
41 <center>Reversed arc.</center>
42
43 */