WoW:USERAPI round: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (Move page script moved page USERAPI round to USERAPI round without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 20: Line 20:
<pre>function round(number, decimals)
<pre>function round(number, decimals)
     return (("%%.%df"):format(decimals)):format(number)
     return (("%%.%df"):format(decimals)):format(number)
end</pre>
The above truncates after number of decimals.
The below rounds (note the 0+ makes it remove trailing 0's)
<pre>function round(number,decimals)
    return 0+(("%%.%df"):format(decimals)):format(number+.1^(decimals+1)/2)
end</pre>
end</pre>



Latest revision as of 04:49, 15 August 2023

This page documents a <i>user-defined function</i> that you can copy and paste into your addon. Replace PREFIX with your addon or lib prefix to avoid conflicts between different versions of these functions.

User defined functions


Round a number off to n places.

number = round(number, decimals)

Function Parameters[edit]

Arguments[edit]

number
Number. The number to round.
decimals
Number. Round to this many places.

Returns[edit]

number
Number. The rounded number.

Example[edit]

local number = round(math.pi, 3)
print(number) -- prints 3.142

Code[edit]

function round(number, decimals)
    return (("%%.%df"):format(decimals)):format(number)
end

See Also[edit]