/*!
\page create_vector_page Vector
To create a \b Vector in the Main Menu select New Entity - >
Basic - > Vector
\n There are 2 algorithms to create a \b Vector in the 3D space.
\n The \b Result of each operation will be a GEOM_Object (edge).
\n Firstly, you can define a Vector by its \b Start and End Points.
\n TUI Command: geompy.MakeVector(Point1, Point2)
\n Arguments: Name + 2 vertices.
\image html vector1.png
\n Secondly, you can define a \b Vector starting in the Origin of
coordinates by its End Point.
\n TUI Command: geompy.MakeVectorDXDYDZ(DX, DY, DZ)
\n Arguments: Name + 3 values
\image html vector2.png
Example:
\image html image34.png "A vector by two points and a vector from the origin of coordinates"
Our TUI Scripts provide you with useful examples of creation of
\ref tui_creation_vector "Basic Geometric Objects".
*/