MicroController/stdlib/math.lua
2019-03-05 19:50:21 +08:00

4 lines
132 B
Lua

function round(num, numDecimalPlaces)
local mult = 10^(numDecimalPlaces or 0)
return math.floor(num * mult + 0.5) / mult
end