WoW:USERAPI round: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (→‎Code: Previous "correction" is incorrect. Check the talk page.)
m (Move page script moved page USERAPI round to USERAPI round without leaving a redirect)
 
(No difference)

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]