AddOns WoW API Widget API XML UI Event API WoW Lua Macro API CVars
Battle.net
HOWTOs Snippets UI tech
Categories
← WoW API < floor
Lua/Libshortcut
val = floor(value);
floor(value) returns the floor of the value (essentially it returns the whole part of the value) i.e. rounds value down
> local x = floor(10.9); > = x 10
-- Rounding using floor() > local x = floor(value + .5)
Template:LUA