namespace GeoAPI.Operations.Buffer
{
///
/// Buffer style.
///
public enum BufferStyle
{
///
/// Specifies a round line buffer end cap endCapStyle (Default).
/// /
CapRound = 1,
///
/// Specifies a butt (or flat) line buffer end cap endCapStyle.
///
CapButt = 2,
///
/// Specifies a square line buffer end cap endCapStyle.
///
CapSquare = 3,
}
}