]> SALOME platform Git repositories - modules/geom.git/blob - doc/salome/gui/GEOM/input/creating_curve.doc
Salome HOME
0020654: [CEA 386] GetType() function
[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,isClosed)</em></li>
19 </ul>
20 ListOfShape is a list of points through which the curve passes.
21 If isClosed is True, MakeInterpol builds a closed edge.
22
23 <b>Arguments:</b> Name + at least 2 points which will serve as nodes
24 on the curve.
25
26 \image html curve.png
27
28 <b>Examples:</b>
29
30 \image html polyline.png
31 <center>Polyline</center>
32
33 \image html bezier.png
34 <center>Bezier</center>
35
36 \image html interpol.png
37 <center>B-Spline</center>
38
39 Our <b>TUI Scripts</b> provide you with useful examples of creation of 
40 \ref tui_creation_curve "Basic Geometric Objects".
41
42 */