WoW:API floor: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{wowapi}}
{{:Lua/Libshortcut|floor|math.floor}}
{{:Lua/Libshortcut|floor|math.floor}}



Revision as of 21:30, 12 August 2008

WoW API < floor

Lua/Libshortcut

Usage

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)

Template:LUA