/*!
\page create_circle_page Circle
To create a \b Circle in the Main Menu select New Entity - >
Basic - > Circle
\n There are 2 algorithms to create a \b Circle in the 3D space.
\n The \b Result of each operation will be a GEOM_Object (edge).
\n Firstly, you can define a \b Circle by a Center Point, a \b
Vector giving the circle's normal and a \b Radius.
\n TUI Command: geompy.MakeCircle(Point, Vector,
Radius)
\n Arguments: Name + 1 vertex (for the center) + 1 edge (for
the direction) + Radius.
\image html circle1.png
\n Secondly, you can define a \b Circle by three \b Points that lie on it.
\n TUI Command: geompy.MakeCircleThreePnt(Point1, Point2, Point3)
\n Arguments: Name + 3 points which will form the circle.
\image html circle2.png
Example:
\image html circles.png
Our TUI Scripts provide you with useful examples of creation of
\ref tui_creation_circle "Basic Geometric Objects".
*/