AngleRange
Description
Possible ranges for angle calculation related filters.
Values of this enumeration:
- _0_180 - Measured angle will be in range from 0 to 180 degree.
- _0_360 - Measured angle will be in range from 0 to 360 degree.
namespace AngleRange
{
	enum Type
	{
		_0_180,
		_0_360
	};
}
 

