/*! \page create_sketcher_page Sketcher Sketcher allows to create curves of 2 types: line segment and arc. By default the start point of the curve is located at the point of origin of the reference coordinate system and the curve lies in the plane XOY. The end of the curve is defined by means of "destination", which can be a destination point (coupled with a radius or a center for an arc) or a destination direction coupled with length of a segment or angle and radius of an arc. \n Warning: When constructing an arc by its center and destination point, the constraint on the center is first taken into account. Therefore if the constraints are incompatible the destination point won't lie on the constructed arc (a warning message will be displayed). \n Sketcher is able to create planar curves only. Therefore, it is necessary to select coordinate system (Global or Local) before starting a sketch. Sketcher creates curves lying in the XOY plane of the selected Coordinate System. \n This functionality is available from the main menu via New Entity / Sketch. \n The Result of the operation will be a \b GEOM_Object. \n TUI Command: geompy.MakeSketcher(Command, WorkingPlane) \n This algorithm creates a sketcher (wire or face), following the textual description, passed through the Command argument. The edges of the resulting wire or face will be arcs of circles and/or linear segments. \n \em Command is a string, defining the sketcher by the coordinates of points in the current LCS. \n WorkingPlane can be a Local CS, a plane, or a planar face. The plane is defined by the XYZ coordinates of three non-coincident points. The planar face is an existing GEOM_Object. \n Arguments: