bird/data/scripts/util.lua

12 lines
173 B
Lua
Raw Permalink Normal View History

2025-02-04 23:36:57 +00:00
local util = {}
function util.b2n(b)
return b and 1 or 0
end
function util.lerp(v1, v2, t)
-- return (1 - t) * v1 + t * v2
return v1 + t * (v2 - v1)
end
return util