18 lines
426 B
C#
18 lines
426 B
C#
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
namespace SixLabors.ImageSharp.Drawing {
|
|
/// <inheritdoc cref="PolygonClipper.LineCap" />
|
|
public enum LineCap
|
|
{
|
|
/// <inheritdoc cref="PolygonClipper.LineCap.Butt" />
|
|
Butt,
|
|
|
|
/// <inheritdoc cref="PolygonClipper.LineCap.Square" />
|
|
Square,
|
|
|
|
/// <inheritdoc cref="PolygonClipper.LineCap.Round" />
|
|
Round
|
|
}
|
|
}
|