box-of-eases/src/util.lua

9 lines
151 B
Lua
Raw Permalink Normal View History

2021-09-17 22:44:26 +00:00
function mix(x, y, a)
return x * (1 - a) + y * a
2021-09-19 11:14:38 +00:00
end
function math.sign(x)
if x < 0 then return -1 end
if x > 0 then return 1 end
return 0
2021-09-17 22:44:26 +00:00
end