/// <returns>The a <typeparamref name="TColor"/> that should be applied to the pixel.</returns>
/// <returns>The a <typeparamref name="TColor"/> that should be applied to the pixel.</returns>
publicabstractTColorthis[intx,inty]{get;}
internalabstractTColorthis[intx,inty]{get;}
/// <inheritdoc/>
/// <inheritdoc/>
publicabstractvoidDispose();
publicabstractvoidDispose();
/// <summary>
/// Applies the opactiy weighting for each pixel in a scanline to the target based on the pattern contained in the brush.
/// </summary>
/// <param name="scanline">The a collection of opacity values between 0 and 1 to be merged with the burshed color value before being applied to the target.</param>
/// <param name="scanlineWidth">The number of pixels effected by this scanline.</param>
/// <param name="offset">The offset fromthe begining of <paramref name="scanline" /> the opacity data starts.</param>
/// <param name="x">The x position in the target pixel space that the start of the scanline data corresponds to.</param>
/// <param name="y">The y position in the target pixel space that whole scanline corresponds to.</param>
/// Gets the bounding box that entirely surrounds this region.
/// Gets the bounding box that entirely surrounds this region.
/// </summary>
/// </summary>
/// <remarks>
/// <remarks>
/// This should always contains all possible points returned from either <see cref="ScanX(int, float[], int, int)"/> or <see cref="ScanY(int, float[], int, int)"/>.
/// This should always contains all possible points returned from either <see cref="ScanX(float, float[], int, int)"/> or <see cref="ScanY(float, float[], int, int)"/>.
/// </remarks>
/// </remarks>
publicabstractRectangleBounds{get;}
publicabstractRectangleBounds{get;}
@ -31,7 +31,7 @@ namespace ImageSharp.Drawing
/// <param name="length">The length.</param>
/// <param name="length">The length.</param>
/// <param name="offset">The offset.</param>
/// <param name="offset">The offset.</param>
/// <returns>The number of intersections found.</returns>
/// <returns>The number of intersections found.</returns>