Aura.Mabi.MabiMath.DegreeToRadian C# (CSharp) Метод

DegreeToRadian() публичный статический Метод

Converts degree to radian.
public static DegreeToRadian ( int degree ) : float
degree int
Результат float
		public static float DegreeToRadian(int degree)
		{
			return (float)(Math.PI / 180f * degree);
		}