Wikia

WoWWiki

Truncate

Talk0
98,585pages on
this wiki
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

Arguments

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

Returns

number 
Number. The truncated number.

Example

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

Prints: 3.141

Code

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

See Also

Advertisement | Your ad here

Photos

Add a Photo
62,230photos on this wiki
See all photos >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki