WoW:API floor

From AddOn Studio
Revision as of 17:59, 7 January 2007 by WoWWiki>Hobinbot (demoted headings)
Jump to navigation Jump to search

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