-
-
Notifications
You must be signed in to change notification settings - Fork 451
Expand file tree
/
Copy pathDrawablePopPattern.cs
More file actions
24 lines (21 loc) · 679 Bytes
/
Copy pathDrawablePopPattern.cs
File metadata and controls
24 lines (21 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright Dirk Lemstra https://github.com/dlemstra/Magick.NET.
// Licensed under the Apache License, Version 2.0.
namespace ImageMagick.Drawing;
/// <summary>
/// Terminates a pattern definition.
/// </summary>
public sealed class DrawablePopPattern : IDrawablePopPattern, IDrawingWand
{
/// <summary>
/// Initializes a new instance of the <see cref="DrawablePopPattern"/> class.
/// </summary>
public DrawablePopPattern()
{
}
/// <summary>
/// Draws this instance with the drawing wand.
/// </summary>
/// <param name="wand">The want to draw on.</param>
void IDrawingWand.Draw(DrawingWand wand)
=> wand?.PopPattern();
}