/*! \page create_solid_page Solid To create a \b Solid in the Main Menu select New Entity - > Build - > Solid. Firstly, you can create a \b Solid from a list of shells. The \b Result will be a \b GEOM_Object (SOLID). TUI Command: geompy.MakeSolid(ListOfShape), where \c ListOfShape is a list of shells from which the solid is constructed. Arguments: Name + A closed shell or a list of closed shells. \image html neo-obj6.png Example: \image html solidsn.png "Solid" Secondly, it is possible to create a \b Solid (or a compound of solids) from a list of connected faces or shells. The \b Result will be a \b GEOM_Object (SOLID or COMPOUND). TUI Command: geompy.MakeSolidFromConnectedFaces(ListOfShape, isIntersect), where \c ListOfShape is a list of faces and/or shells from which the solid is constructed and \c isIntersect is a boolean flag which, when set to \c True, forces performing intersection between arguments Arguments: Name + A set of connected faces and/or shells + Boolean flag. \image html neo-obj6_2.png Our TUI Scripts provide you with useful examples of creation of \ref tui_creation_solid "Solid from shell" and \ref tui_creation_solid_from_faces "Solid from connected faces". */