2020-05-11 01:02:02 +00:00
|
|
|
-- From http://lua-users.org/wiki/SimpleRound
|
2020-05-11 23:38:42 +00:00
|
|
|
function worldeditadditions.round(num, numDecimalPlaces)
|
2020-05-11 01:02:02 +00:00
|
|
|
local mult = 10^(numDecimalPlaces or 0)
|
|
|
|
return math.floor(num * mult + 0.5) / mult
|
|
|
|
end
|