66namespace SixLabors . ImageSharp . Drawing . Processing
77{
88 /// <summary>
9- /// Adds extensions that allow the drawing of lines to the <see cref="Image{TPixel}"/> type .
9+ /// Adds extensions that allow the drawing of lines.
1010 /// </summary>
1111 public static class DrawLineExtensions
1212 {
1313 /// <summary>
14- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
14+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
1515 /// </summary>
16- /// <param name="source">The image this method extends .</param>
16+ /// <param name="source">The image processing context .</param>
1717 /// <param name="options">The options.</param>
1818 /// <param name="brush">The brush.</param>
19- /// <param name="thickness">The thickness.</param>
19+ /// <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>
2222 public static IImageProcessingContext DrawLines (
@@ -28,11 +28,11 @@ public static IImageProcessingContext DrawLines(
2828 source . Draw ( options , new Pen ( brush , thickness ) , new Path ( new LinearLineSegment ( points ) ) ) ;
2929
3030 /// <summary>
31- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
31+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
3232 /// </summary>
33- /// <param name="source">The image this method extends .</param>
33+ /// <param name="source">The image processing context .</param>
3434 /// <param name="brush">The brush.</param>
35- /// <param name="thickness">The thickness.</param>
35+ /// <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>
3838 public static IImageProcessingContext DrawLines (
@@ -43,11 +43,11 @@ public static IImageProcessingContext DrawLines(
4343 source . Draw ( new Pen ( brush , thickness ) , new Path ( new LinearLineSegment ( points ) ) ) ;
4444
4545 /// <summary>
46- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
46+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
4747 /// </summary>
48- /// <param name="source">The image this method extends .</param>
48+ /// <param name="source">The image processing context .</param>
4949 /// <param name="color">The color.</param>
50- /// <param name="thickness">The thickness.</param>
50+ /// <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>
5353 public static IImageProcessingContext DrawLines (
@@ -58,12 +58,12 @@ public static IImageProcessingContext DrawLines(
5858 source . DrawLines ( new SolidBrush ( color ) , thickness , points ) ;
5959
6060 /// <summary>
61- /// Draws the provided Points as an open Linear path at the provided thickness with the supplied brush
61+ /// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
6262 /// </summary>
63- /// <param name="source">The image this method extends .</param>
63+ /// <param name="source">The image processing context .</param>
6464 /// <param name="options">The options.</param>
6565 /// <param name="color">The color.</param>
66- /// <param name="thickness">The thickness.</param>
66+ /// <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>>
6969 public static IImageProcessingContext DrawLines (
@@ -75,9 +75,9 @@ public static IImageProcessingContext DrawLines(
7575 source . DrawLines ( options , new SolidBrush ( color ) , thickness , points ) ;
7676
7777 /// <summary>
78- /// Draws the provided Points as an open Linear path with the supplied pen
78+ /// Draws the provided points as an open linear path with the supplied pen.
7979 /// </summary>
80- /// <param name="source">The image this method extends .</param>
80+ /// <param name="source">The image processing context .</param>
8181 /// <param name="options">The options.</param>
8282 /// <param name="pen">The pen.</param>
8383 /// <param name="points">The points.</param>
@@ -90,9 +90,9 @@ public static IImageProcessingContext DrawLines(
9090 source . Draw ( options , pen , new Path ( new LinearLineSegment ( points ) ) ) ;
9191
9292 /// <summary>
93- /// Draws the provided Points as an open Linear path with the supplied pen
93+ /// Draws the provided points as an open linear path with the supplied pen.
9494 /// </summary>
95- /// <param name="source">The image this method extends .</param>
95+ /// <param name="source">The image processing context .</param>
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>
0 commit comments