Files
PdfPig/src/UglyToad.PdfPig/Graphics/Core/LineCapStyle.cs
2018-01-10 19:49:32 +00:00

9 lines
155 B
C#

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