box-of-eases/util.lua

3 lines
54 B
Lua

function mix(x, y, a)
return x * (1 - a) + y * a
end