Files
PdfPig/src/UglyToad.Pdf/Graphics/Core/LineCapStyle.cs
2017-12-02 14:11:20 +00:00

9 lines
152 B
C#

namespace UglyToad.Pdf.Graphics.Core
{
internal enum LineCapStyle
{
Butt = 0,
Round = 1,
ProjectingSquare = 2
}
}