WoW:API floor: Difference between revisions
Jump to navigation
Jump to search
m (cat) |
No edit summary |
||
Line 1: | Line 1: | ||
=math.floor= | |||
==Usage== | |||
val = floor(value); | |||
==Description== | |||
floor(value) returns the floor of the value (essentially it returns the whole number of the value). | floor(value) returns the floor of the value (essentially it returns the whole number of the value). | ||
==Example== | |||
> local x = floor(10.9); | |||
> = x | |||
10 | |||
-- Rounding using floor() | |||
> local x = floor(value + .5) | |||
{{Template:WoW API}} | {{Template:WoW API}} |
Revision as of 05:56, 9 April 2006
math.floor
Usage
val = floor(value);
Description
floor(value) returns the floor of the value (essentially it returns the whole number of the value).
Example
> local x = floor(10.9); > = x 10
-- Rounding using floor() > local x = floor(value + .5)