/*!
\page create_line_page Line
To create a \b Line in the Main Menu select New Entity - >Basic - > Line
There are 2 algorithms to create a \b Line in the 3D space.
The Result of each operation will be a GEOM_Object (edge).
\n Firstly you can define a \b Line through \b Point1 and \b Point2,
which are the points through which the \b Line passes.
\n TUI Command: geompy.MakeLineTwoPnt(Point1, Point2)
\n Arguments: Name + 2 vertices.
\image html line1.png
\n Secondly you can define a \b Line as intersection of \b Plane1 and
\b Plane2.
\n TUI Command: geompy.MakeLineTwoFaces(myFace1, myFace2)
\n Arguments: Name + 2 faces.
\image html line2.png
Example:
\image html lines.png "Line defined through points"
\b NB! There is another way to create a line, which is currently
accessible only via \b TUI commands.
You can define a line passing through the given \b Point and parallel
to the given \b Vector.
\n TUI Command: geompy.MakeLine(Point, Vector)
Our TUI Scripts provide you with useful examples of creation of
\ref tui_creation_line "Basic Geometric Objects".
*/