/*! \page create_extrusion_page Extrusion \n To generate an \b Extrusion on an object in the Main Menu select New Entity - > Generation - > Extrusion \n There are 2 algorithms for creation of an \b Extrusion (Prism). \n The \b Result of the operation will be a GEOM_Object (edge, face, solid or compsolid). \n Firstly, you can define the Base Shape (a basis of the extrusion), the \b Vector (a direction of the extrusion) and the \b Height of extrusion. \b TUI Command: geompy.MakePrismVecH(Base, Vector, Height) \n Arguments: Name + 1 shape (vertex, edge, wire, face or shell) serving as base object + 1 vector (for direction of the extrusion) + 1 value (dimension). \image html extrusion1.png \n Secondly, you can define the \b Extrusion by the Base Shape and the \b Start and End Point of the \b Vector (in this way you don't need to create it in advance). \n TUI Command: geompy.MakePrism(Base, Point1, Point2) \n Arguments: Name + 1 shape (vertex, edge, wire, face or shell) serving as base object + 2 vertices. \image html extrusion2.png Examples: \image html prisms_basessn.png