Recent changes Random page
GAMING
Gaming
 
StarCraft Wiki
Super Smash Wiki
Halopedia
Diablo Wiki
FFXIclopedia
Grand Theft Wiki
See more...

API floor

From WoWWiki

Jump to: navigation, search

"floor" is a shortcut for the standard Lua library function "math.floor". They can both be used interchangeably.

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)


 


This is a Lua function and documented as part of the World of Warcraft API

Rate this article:
Share this article:
.