@ -7,7 +7,7 @@ namespace ImageSharp.Drawing
{
using System;
using Processors;
using Processing;
/// <summary>
/// Brush represents a logical configuration of a brush which can be used to source pixel colors
@ -8,7 +8,7 @@ namespace ImageSharp.Drawing.Brushes
using System.Numerics;
/// Provides an implementation of an image brush for painting images within areas.
/// Provides an implementation of a pattern brush for painting patterns.
@ -3,7 +3,7 @@
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageSharp.Drawing.Processors
namespace ImageSharp.Drawing.Processing
/// Provides an implementation of a brush that can recolor an image
/// Provides an implementation of a solid brush for painting solid color areas.
@ -11,7 +11,7 @@ namespace ImageSharp
using Drawing.Brushes;
using Drawing.Paths;
using Drawing.Pens;
using Drawing.Processors;
using Drawing.Processing;
using Drawing.Shapes;
@ -7,7 +7,7 @@ namespace ImageSharp
/// Extension methods for the <see cref="Image"/> type.
@ -10,7 +10,7 @@ namespace ImageSharp
using Drawing;
@ -9,7 +9,7 @@ namespace ImageSharp
@ -6,7 +6,7 @@
namespace ImageSharp.Drawing.Pens
/// Interface representing a Pen
@ -10,8 +10,7 @@ namespace ImageSharp.Drawing.Pens
using ImageSharp.Drawing.Brushes;
using ImageSharp.Drawing.Paths;
using ImageSharp.Drawing.Pens.Processors;
using ImageSharp.Drawing.Processors;
/// Provides a pen that can apply a pattern to a line with a set brush and thickness
namespace ImageSharp.Drawing.Pens.Processors
using Paths;
@ -3,12 +3,13 @@
using System.Threading.Tasks;
using ImageSharp.Processing;
/// Combines two images together by blending the pixels.
using System.Linq;
@ -12,7 +12,6 @@ namespace ImageSharp.Drawing.Processors
using Pens;
using Pens.Processors;
using Shapes;
using Rectangle = ImageSharp.Rectangle;