Salome HOME
Mantis issue 0022227: Integration request: Building a surface from a cloud of points
[modules/geom.git] / doc / salome / gui / GEOM / input / tui_advanced_geom_objs.doc
1 /*!
2
3 \page tui_advanced_geom_objs_page Advanced Geometrical Objects
4
5 \anchor tui_creation_pipetshape
6 <br><h2>Creation of PipeTShape</h2>
7 \tui_script{advanced_geom_objs_ex01.py}
8
9 \anchor tui_creation_divideddisk
10 <br><h2>Creation of DividedDisk</h2>
11 \tui_script{advanced_geom_objs_ex02.py}
12
13 \anchor tui_creation_dividedcylinder
14 <br><h2>Creation of DividedCylinder</h2>
15 \tui_script{advanced_geom_objs_ex03.py}
16
17 \anchor tui_creation_smoothingsurface
18 <br><h2>Creation of SmoothingSurface</h2>
19
20 \code
21 import geompy
22 import salome
23 gg = salome.ImportComponentGUI("GEOM")
24
25 # create SmoothingSurface object
26 smoothingsurface = geompy.MakeSmoothingSurface([value])
27
28 # add object in the study
29 id_smoothingsurface = geompy.addToStudy(smoothingsurface,"SmoothingSurface")
30
31 # display smoothingsurface
32 gg.createAndDisplayGO(id_smoothingsurface) 
33 \endcode
34
35 <!--@@ insert new functions before this line @@ do not remove this line @@-->
36 */