box-of-eases/util.lua
2021-09-18 01:44:36 +03:00

3 lines
54 B
Lua

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