Wikia

WoWWiki

Watchlist Recent changes

Truncate

This is a user-defined function that you can copy and paste into your addon. Replace <PREFIX> with your AddOn's prefix to avoid conflicts between different versions of these functions.


Truncate a number off to n places.

number = truncate(number, decimals)

Function Parameters Edit

Arguments Edit

number
Number. The number to truncate.
decimals 
Number. Truncate to this many places.

Returns Edit

number 
Number. The truncated number.

Example Edit

local number = truncate(math.pi, 3)
print(number)

Prints: 3.141

CodeEdit

function truncate(number, decimals)
    return number - (number % (0.1 ^ decimals))
end

See Also Edit

Pages on WoWWiki

95,776pages on
this wiki
Advertisement | Your ad here

Latest Photos

Add a Photo
58,075photos on this wiki
See more >

Recent Wiki Activity

See more >

Recent Questions

Around Wikia's network

Random Wiki