Files
PdfPig/src/UglyToad.Pdf/Graphics/LineCapStyle.cs

9 lines
147 B
C#
Raw Normal View History

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