示例#1
0
文件: GraphicsPath.cs 项目: yaram/Eto
 /// <summary>
 /// Adds an ellipse to the path
 /// </summary>
 /// <remarks>
 /// Rectangles are separate figures and will not connect to the current or next figure in the path.
 /// The starting point of the path will no longer be set after this call.
 /// </remarks>
 /// <param name="x">X co-ordinate of the top left of the ellipse</param>
 /// <param name="y">Y co-ordinate of the top left of the ellipse's bounding rectangle</param>
 /// <param name="width">Width of the rectangle</param>
 /// <param name="height">Height of the rectangle</param>
 public void AddEllipse(float x, float y, float width, float height)
 {
     Handler.AddEllipse(x, y, width, height);
 }