We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b543d83 commit dfd59bbCopy full SHA for dfd59bb
1 file changed
src/ImageSharp.Drawing/Processing/Extensions/ClearPathExtensions.cs
@@ -15,12 +15,12 @@ public static class ClearPathExtensions
15
/// </summary>
16
/// <param name="source">The image processing context.</param>
17
/// <param name="color">The color.</param>
18
- /// <param name="path">The logic path.</param>
+ /// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
19
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
20
public static IImageProcessingContext Clear(
21
this IImageProcessingContext source,
22
Color color,
23
- IPath path) =>
+ IPath region) =>
24
source.Clear(new SolidBrush(color), path);
25
26
/// <summary>
0 commit comments