// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Media
{
///
/// Defines the direction an which elliptical arc is drawn.
///
public enum SweepDirection
{
///
/// Specifies that arcs are drawn in a counter clockwise (negative-angle) direction.
///
CounterClockwise,
///
/// Specifies that arcs are drawn in a clockwise (positive-angle) direction.
///
Clockwise,
}
}