// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Drawing.Brushes { /// /// Provides an implementation of a recolor brush for painting color changes. /// public class RecolorBrush : RecolorBrush { /// /// Initializes a new instance of the class. /// /// Color of the source. /// Color of the target. /// The threshold. public RecolorBrush(Color sourceColor, Color targetColor, float threshold) : base(sourceColor, targetColor, threshold) { } } }