mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
20 lines
443 B
C#
20 lines
443 B
C#
namespace UglyToad.Pdf.Graphics.Operations
|
|
{
|
|
internal class CloseAndStrokePath : IGraphicsStateOperation
|
|
{
|
|
public const string Symbol = "s";
|
|
|
|
public static readonly CloseAndStrokePath Value = new CloseAndStrokePath();
|
|
|
|
public string Operator => Symbol;
|
|
|
|
private CloseAndStrokePath()
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Symbol;
|
|
}
|
|
}
|
|
} |