Example #1
0
 /// <summary>
 /// Adds lines to each of the specified <paramref name="points"/>
 /// </summary>
 /// <param name="path">Path to add the lines to</param>
 /// <param name="points">Points for each line</param>
 public static void AddLines(this IGraphicsPath path, params PointF[] points)
 {
     path.AddLines(points);
 }
Example #2
0
 /// <summary>
 /// Adds the <paramref name="lines"/> to the path
 /// </summary>
 /// <param name="lines"></param>
 public void AddLines(IEnumerable <Point> lines)
 {
     inner.AddLines(lines);
 }