← WoW Lua
val = math.floor(value) val = floor(value);
Description[edit | edit source]
floor(value) returns the floor of the value (essentially it returns the whole part of the value) i.e. rounds value down
Example[edit | edit source]
> local x = floor(10.9); > = x 10
-- Rounding using floor() > local x = floor(value + .5)
Community content is available under CC-BY-SA unless otherwise noted.