/*
* Author: Andrey Pokidov
* License: Apache-2.0
* Date: 1 Feb 2019
*/
namespace BGC
{
public enum AngleUnit
{
RADIANS = 1,
DEGREES = 2,
TURNS = 3,
}
public enum AngleRange
{
///
/// The measure of an angle with a range of:
/// [0, 360) degrees, [0, 2xPI) radians, [0, 1) turns, [0, 400) gradians
///
UNSIGNED_RANGE = 1,
///
/// The measure of an angle with a range of:
/// (-180, 180] degrees, (-PI, PI] radians, (-0.5, 0.5] turns, (-200, 200] gradians
///
SIGNED_RANGE = 2
}
}