/*! \page create_torus_page Torus To create a \b Torus in the Main Menu select New Entity - > Primitives - > Torus \n There are two algorithms for creation of a \b Torus. \n The \b Result of each operation will be a GEOM_Object (SOLID). \n Firstly, you can define a \b Torus by the given Base Point, the normal \b Vector and the Major and Minor \b Radiuses. \n TUI Command: geompy.MakeTorus(Point, Vector, RadiusMajor, RadiusMinor) \n Arguments: Name + 1 vertex + 1 vector (for direction) + 2 values (1 & 2 Radius). \image html torus1.png \n Secondly, you can define a \b Torus with the center at the origin of coordinates by its Major and Minor \b Radiuses. \n TUI Command: geompy.MakeTorusRR(RadiusMajor, RadiusMinor) \n Arguments: Name + 2 values (1 & 2 Radius from the origin). \image html torus2.png Example: \image html toruses.png Our TUI Scripts provide you with useful examples of creation of \ref tui_creation_torus "Primitives". */