BeardedManStudios.Network.BeardedMath.Lerp C# (CSharp) Метод

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

Precise method which guarantees v = v1 when t = 1, Mathf doesn't support doubles so this one will
public static Lerp ( double a0, double a1, float t ) : double
a0 double
a1 double
t float
Результат double
		public static double Lerp(double a0, double a1, float t)
		{
			return (1 - t) * a0 + t * a1;
		}
BeardedMath