@@ -19,7 +19,7 @@ public static class DrawLineExtensions
1919 /// <param name="thickness">The line thickness.</param>
2020 /// <param name="points">The points.</param>
2121 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
22- public static IImageProcessingContext DrawLines (
22+ public static IImageProcessingContext DrawLine (
2323 this IImageProcessingContext source ,
2424 DrawingOptions options ,
2525 Brush brush ,
@@ -35,7 +35,7 @@ public static IImageProcessingContext DrawLines(
3535 /// <param name="thickness">The line thickness.</param>
3636 /// <param name="points">The points.</param>
3737 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
38- public static IImageProcessingContext DrawLines (
38+ public static IImageProcessingContext DrawLine (
3939 this IImageProcessingContext source ,
4040 Brush brush ,
4141 float thickness ,
@@ -50,12 +50,12 @@ public static IImageProcessingContext DrawLines(
5050 /// <param name="thickness">The line thickness.</param>
5151 /// <param name="points">The points.</param>
5252 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
53- public static IImageProcessingContext DrawLines (
53+ public static IImageProcessingContext DrawLine (
5454 this IImageProcessingContext source ,
5555 Color color ,
5656 float thickness ,
5757 params PointF [ ] points ) =>
58- source . DrawLines ( new SolidBrush ( color ) , thickness , points ) ;
58+ source . DrawLine ( new SolidBrush ( color ) , thickness , points ) ;
5959
6060 /// <summary>
6161 /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
@@ -66,13 +66,13 @@ public static IImageProcessingContext DrawLines(
6666 /// <param name="thickness">The line thickness.</param>
6767 /// <param name="points">The points.</param>
6868 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>>
69- public static IImageProcessingContext DrawLines (
69+ public static IImageProcessingContext DrawLine (
7070 this IImageProcessingContext source ,
7171 DrawingOptions options ,
7272 Color color ,
7373 float thickness ,
7474 params PointF [ ] points ) =>
75- source . DrawLines ( options , new SolidBrush ( color ) , thickness , points ) ;
75+ source . DrawLine ( options , new SolidBrush ( color ) , thickness , points ) ;
7676
7777 /// <summary>
7878 /// Draws the provided points as an open linear path with the supplied pen.
@@ -82,7 +82,7 @@ public static IImageProcessingContext DrawLines(
8282 /// <param name="pen">The pen.</param>
8383 /// <param name="points">The points.</param>
8484 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
85- public static IImageProcessingContext DrawLines (
85+ public static IImageProcessingContext DrawLine (
8686 this IImageProcessingContext source ,
8787 DrawingOptions options ,
8888 Pen pen ,
@@ -96,7 +96,7 @@ public static IImageProcessingContext DrawLines(
9696 /// <param name="pen">The pen.</param>
9797 /// <param name="points">The points.</param>
9898 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
99- public static IImageProcessingContext DrawLines (
99+ public static IImageProcessingContext DrawLine (
100100 this IImageProcessingContext source ,
101101 Pen pen ,
102102 params PointF [ ] points ) =>
0 commit comments