Skip to content

Instantly share code, notes, and snippets.

@jasonbradley
Created December 15, 2012 05:24
Show Gist options
  • Save jasonbradley/4291509 to your computer and use it in GitHub Desktop.
Save jasonbradley/4291509 to your computer and use it in GitHub Desktop.
Round function in Lua
Util.round = function(num, idp)
local mult = 10^(idp or 0)
return math.floor(num * mult + 0.5) / mult
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment