Пример #1
0
 /// <summary>
 /// Adds an ellipse to the path at the specified <paramref name="location"/>
 /// </summary>
 /// <param name="path">Path to add the ellipse to</param>
 /// <param name="location">Location of the bounding rectangle of the ellipse</param>
 public static void AddEllipse(this IGraphicsPath path, RectangleF location)
 {
     path.AddEllipse(location.X, location.Y, location.Width, location.Height);
 }