/*! \page create_disk_page Disk A primitive called disk is a round plane with a certain radius and orientation To create a \b Disk in the Main Menu select New Entity - > Primitives - > Disk \n There are 3 algorithms to create a \b Disk in 3D space. \n The \b Result of each operation will be a GEOM_Object (face). \n Firstly, you can create a \b Disk at the origin of coordinates defining its radius and selecting the orientation of its axis with radio buttons (OXY, OYZ or OZX).This means that the Disk will lie in "OXY", "OYZ" or "OZX" plane correspondingly. \n TUI Command: geompy.MakeDiskR(Radius, Orientation) \n Arguments: Name + 2 values (Dimensions at origin: radius and orientation). \image html disk1.png \n Secondly, you can define a \b Disk by a Center Point, a \b Vector defining the normal of a circle and a \b Radius. \n TUI Command: geompy.MakeDiskPntVecR(Point, Vector, Radius) \n Arguments: Name + 1 vertex (for the center) + 1 edge (for the direction) + Radius. \image html disk2.png \n Finally, you can define a \b Disk by three \b Points that lie on its boundary. \n TUI Command: geompy.MakeDiskThreePnt(Point1, Point2, Point3) \n Arguments: Name + 3 points which will form the disk. \image html disk3.png Example: \image html disks.png "Disks" Our TUI Scripts provide you with useful examples of creating \ref tui_creation_disk "Primitives". */