// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Drawing.Pens { /// /// Represents a in the color space. /// public class Pen : Pen { /// /// Initializes a new instance of the class. /// /// The color. /// The width. public Pen(Rgba32 color, float width) : base(color, width) { } /// /// Initializes a new instance of the class. /// /// The brush. /// The width. public Pen(IBrush brush, float width) : base(brush, width) { } /// /// Initializes a new instance of the class. /// /// The brush. /// The width. /// The pattern. public Pen(IBrush brush, float width, float[] pattern) : base(brush, width, pattern) { } /// /// Initializes a new instance of the class. /// /// The pen. internal Pen(Pen pen) : base(pen) { } } }