Answers for "C# lerp"

C#
1

how to lerp in c#

float Lerp(float a, float b, float t)
{
	return a + (b - a) * t;
}
Posted by: Guest on December-02-2021
0

C# lerp

float Lerp(float min, float max, float x)
{
	return min - (min - max) * x;
}
Posted by: Guest on January-27-2022

C# Answers by Framework

Browse Popular Code Answers by Language