For example:
float AngleAddition(float value)
{
float angle = value + 90;
return angle;
}
If the value passed is 340 to this method it should return a float of value 70 which is in degree. Since 340 + 90 = 360 + 70 (360 is nothing but 0 in degrees).