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