/**
* Style options for corners.
*
* @demo The {@link https://sandcastle.cesium.com/index.html?src=Corridor.html&label=Geometries|Corridor Demo}
* demonstrates the three corner types, as used by {@link CorridorGraphics}.
*
* @exports CornerType
*/
var CornerType = {
/**
*
*
* Corner has a smooth edge.
* @type {Number}
* @constant
*/
ROUNDED : 0,
/**
*
*
* Corner point is the intersection of adjacent edges.
* @type {Number}
* @constant
*/
MITERED : 1,
/**
*
*
* Corner is clipped.
* @type {Number}
* @constant
*/
BEVELED : 2
};
export default Object.freeze(CornerType);