Salome HOME
[bos #29336] problem in inertia calculus
[modules/geom.git] / doc / salome / gui / GEOM / input / creating_solid.doc
1 /*!
2
3 \page create_solid_page Solid
4
5 To create a \b Solid in the <b>Main Menu</b> select <b>New Entity - > Build - >
6 Solid</b>.
7
8 Firstly, you can create a \b Solid from a list of shells.
9
10 The \b Result will be a  \b GEOM_Object (SOLID).
11
12 <b>TUI Command:</b> <em>geompy.MakeSolid(ListOfShape),</em> where
13 \c ListOfShape is a list of shells from which the solid is constructed.
14
15 <b>Arguments:</b> Name + A closed shell or a list of closed shells.
16
17 \image html neo-obj6.png
18
19 <b>Example:</b>
20
21 \image html solidsn.png "Solid"
22
23 Secondly, it is possible to create a \b Solid (or a compound of solids) from a list of
24 connected faces or shells.
25
26 The \b Result will be a \b GEOM_Object (SOLID or COMPOUND).
27
28 <b>TUI Command:</b> <em>geompy.MakeSolidFromConnectedFaces(ListOfShape, isIntersect),</em> where
29 \c ListOfShape is a list of faces and/or shells from which the solid is constructed and 
30 \c isIntersect is a boolean flag which, when set to \c True, forces performing intersection/sewing
31 between arguments
32
33 <b>Arguments:</b> Name + A set of connected faces and/or shells + Boolean flag.
34
35 \image html neo-obj6_2.png
36
37 Our <b>TUI Scripts</b> provide you with useful examples of creation of 
38 \ref tui_creation_solid "Solid from shell" and
39 \ref tui_creation_solid_from_faces "Solid from connected faces".
40
41 */