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

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

Converts Mabi's byte direction into a radian.
While entity packets use a byte from 0-255 for the direction, props are using radian floats.
public static ByteToRadian ( byte direction ) : float
direction byte
Результат float
		public static float ByteToRadian(byte direction)
		{
			return (float)Math.PI * 2 / 255 * direction;
		}