MicroController/stdlib/math.lua

4 lines
132 B
Lua
Raw Permalink Normal View History

2019-03-05 19:50:21 +08:00
function round(num, numDecimalPlaces)
local mult = 10^(numDecimalPlaces or 0)
return math.floor(num * mult + 0.5) / mult
end