m
no edit summary
(demoted headings) |
mNo edit summary |
||
| Line 1: | Line 1: | ||
{{:Lua/Libshortcut|floor|math.floor}} | {{:Lua/Libshortcut|floor|math.floor}} | ||
== Usage == | |||
val = 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'' | 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); | > local x = floor(10.9); | ||
> = x | > = x | ||