WoW:API floor: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
(Use Lua/Libshortcut template. Change category from "LUA Functions" to "Lua functions".)
Line 1: Line 1:
=math.floor=
{{:Lua/Libshortcut|floor|math.floor}}
 
=floor=


==Usage==
==Usage==
Line 15: Line 17:
  > local x = floor(value + .5)
  > local x = floor(value + .5)


{{Template:WoW API}}
{{LUA}}

Revision as of 12:14, 26 May 2006

Lua/Libshortcut

floor

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