WoW:API floor: Difference between revisions

20 bytes added ,  15 August 2023
m
Move page script moved page API floor to WoW:API floor without leaving a redirect
No edit summary
m (Move page script moved page API floor to WoW:API floor without leaving a redirect)
 
(7 intermediate revisions by 7 users not shown)
Line 1: Line 1:
=math.floor=
{{wowlua}}


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


==Description==
== 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 part of the value) i.e. rounds value ''down''


==Example==
== Example ==
  > local x = floor(10.9);
  > local x = floor(10.9);
  > = x
  > = x
Line 14: Line 14:
  -- Rounding using floor()
  -- Rounding using floor()
  > local x = floor(value + .5)
  > local x = floor(value + .5)
{{Template:WoW API}}
Anonymous user