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

9 lines
152 B
C#
Raw Normal View History

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