3 lines
No EOL
54 B
Lua
3 lines
No EOL
54 B
Lua
function mix(x, y, a)
|
|
return x * (1 - a) + y * a
|
|
end |