Salome HOME
e442851bf0a90a2c32104692857185e69e3c3caa
[modules/geom.git] / doc / salome / gui / GEOM / input / creating_curve.doc
1 /*!
2
3 \page create_curve_page Curve
4
5 To create a \b Curve in the <b>Main Menu</b> select <b>New Entity - >
6 Basic - > Curve</b>
7
8 \n There are three algorithms to create a \b Curve in the 3D space. Each
9 time you define it by a list of \b Points through which the curve
10 passes. The three <b>Curve Construction</b> menu choices correspond to three
11 possible types of curves: Polyline, Besier or B-spline (Interpolated).
12 \n The \b Result of each operation will be a GEOM_Object (edge).
13
14 \n <b>TUI Commands:</b>
15 <ul>
16 <li><em>geompy.MakePolyline(ListOfShapes)</em></li>
17 <li><em>geompy.MakeBezier(ListOfShapes)</em></li>
18 <li><em>geompy.MakeInterpol(ListOfShapes)</em></li>
19 </ul>
20 ListOfShape is a list of points through which the curve passes.
21
22 <b>Arguments:</b> Name + at least 2 points which will serve as nodes
23 on the curve.
24
25 \image html curve.png
26
27 <b>Examples:</b>
28
29 \image html polyline.png
30 <center>Polyline</center>
31
32 \image html bezier.png
33 <center>Bezier</center>
34
35 \image html interpol.png
36 <center>B-Spline</center>
37
38 Our <b>TUI Scripts</b> provide you with useful examples of creation of 
39 \ref tui_creation_curve "Basic Geometric Objects".
40
41 */