/// <summary> /// Create a pen with a 'Dash Dot Dot' drawing patterns /// </summary> /// <param name="color">The color.</param> /// <param name="width">The width.</param> /// <returns>The Pen</returns> public static Pen DashDotDot(Color color, float width) => new Pen(Pens <Color, uint> .DashDotDot(color, width));
/// <summary> /// Create a pen with a 'Dash Dot Dot' drawing patterns /// </summary> /// <param name="brush">The brush.</param> /// <param name="width">The width.</param> /// <returns>The Pen</returns> public static Pen DashDotDot(IBrush <Rgba32> brush, float width) => new Pen(Pens <Rgba32> .DashDotDot(brush, width));
/// <summary> /// Create a pen with a 'Dash Dot Dot' drawing patterns /// </summary> /// <param name="brush">The brush.</param> /// <param name="width">The width.</param> /// <returns>The Pen</returns> public static Pen DashDotDot(IBrush <Color, uint> brush, float width) => new Pen(Pens <Color, uint> .DashDotDot(brush, width));
/// <summary> /// Create a pen with a 'Dash Dot Dot' drawing patterns /// </summary> /// <param name="color">The color.</param> /// <param name="width">The width.</param> /// <returns>The Pen</returns> public static Pen DashDotDot(Rgba32 color, float width) => new Pen(Pens <Rgba32> .DashDotDot(color, width));