This repository has been archived on 2025-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
2025-05-25 14:23:06 +07:00

11 lines
153 B
Lua

local module = {}
function module.lerp(a, b,c)
return a + (b - a) * c
end
function module.round(a)
return math.floor(a + .5)
end
return module