WoW:API floor: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
({{luaapi}})
mNo edit summary
Line 1: Line 1:
{{luaapi}}
{{wowlua}}


  val = math.floor(value)
  val = math.floor(value)

Revision as of 07:36, 19 September 2013

WoW Lua


val = math.floor(value)
val = floor(value);

Description

floor(value) returns the floor of the value (essentially it returns the whole part of the value) i.e. rounds value down

Example

> local x = floor(10.9);
> = x
10
-- Rounding using floor()
> local x = floor(value + .5)