rename mix to lerp

This commit is contained in:
Matthew 2025-09-03 06:06:14 +10:00
parent b4bcfb7929
commit 4193fcb473

4
math.d
View File

@ -922,7 +922,7 @@ Inverse(Mat4 mat)
}
pragma(inline) f32
Mix(f32 x, f32 y, f32 a)
Lerp(f32 x, f32 y, f32 a)
{
return x * (1 - a) + y * a;
}
@ -937,7 +937,7 @@ pragma(inline) f32
Remap(f32 v, f32 in_min, f32 in_max, f32 out_min, f32 out_max)
{
f32 t = InverseLerp(v, in_min, in_max);
return Mix(out_min, out_max, t);
return Lerp(out_min, out_max, t);
}
unittest