WoW:API floor: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (cat)
m (Move page script moved page API floor to API floor without leaving a redirect)
 
(8 intermediate revisions by 8 users not shown)
Line 1: Line 1:
floor(value) returns the floor of the value (essentially it returns the whole number of the value).
{{wowlua}}


{{Template:WoW API}}
val = math.floor(value)
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)

Latest revision as of 04:45, 15 August 2023

WoW Lua


val = math.floor(value)
val = floor(value);

Description[edit]

floor(value) returns the floor of the value (essentially it returns the whole part of the value) i.e. rounds value down

Example[edit]

> local x = floor(10.9);
> = x
10
-- Rounding using floor()
> local x = floor(value + .5)