Salome HOME
Build Geometry documentation under Windows.
[modules/geom.git] / doc / salome / gui / GEOM / input / creating_sphere.doc
1 /*!
2
3 \page create_sphere_page Sphere
4
5 \n To create a \b Sphere in the <b>Main Menu</b> select <b>New Entity - > Primitives - > Sphere</b>
6
7 \n There are two algorithms for creation of a \b Sphere.
8 \n The \b Result of each operation will be a GEOM_Object (SOLID).
9
10 \n Firstly, you can define a \b Sphere by the <b>Center Point</b> and the \b Radius.
11 \n <b>TUI Command:</b> <em>geompy.MakeSphere(Point, Radius)</em>
12 \n <b>Arguments:</b> Name + 1 vertex + 1 value (Radius).
13
14 \image html sphere1.png
15
16 \n Secondly, you can define a \b Sphere with the center at the origin of
17 coordinate system by the \b Radius.
18 \n <b>TUI Command:</b> <em>geompy. MakeSphereR(Radius)</em>
19 \n <b>Arguments:</b> Name + 1 value (Radius from the origin).
20
21 \image html sphere2.png
22
23 \n <b>NB!</b> The is another way to create a \b Sphere, which is
24 currently accessible only via \b TUI commands.
25 \n You can define the \b Sphere by the coordinates of the <b>Center
26 Point</b> and its \b Radius (in this way you don't need to create it in advance).
27 \n <b>TUI Command:</b> <em>geompy.MakeSphere(X, Y, Z, Radius)</em>
28
29 <b>Example:</b>
30
31 \image html spheres.png "Spheres"
32
33 Our <b>TUI Scripts</b> provide you with useful examples of creation of 
34 \ref tui_creation_sphere "Primitives".
35
36 */