// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.PolygonClipper {
///
/// Specifies the shape to be used at the ends of open lines or paths when stroking.
///
public enum LineCap
{
///
/// The stroke ends exactly at the endpoint.
/// No extension is added beyond the path's end coordinates.
///
Butt,
///
/// The stroke extends beyond the endpoint by half the line width,
/// producing a square edge.
///
Square,
///
/// The stroke ends with a semicircular cap,
/// extending beyond the endpoint by half the line width.
///
Round
}
}