// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Drawing.Brushes { /// /// Provides an implementation of a pattern brush for painting patterns. The brush use for painting. /// public class PatternBrush : PatternBrush { /// /// Initializes a new instance of the class. /// /// Color of the fore. /// Color of the back. /// The pattern. public PatternBrush(Color foreColor, Color backColor, bool[,] pattern) : base(foreColor, backColor, pattern) { } /// /// Initializes a new instance of the class. /// /// The brush. internal PatternBrush(PatternBrush brush) : base(brush) { } } }