add new extensions.lua
This commit is contained in:
parent
cda34e3975
commit
958a706546
@ -51,6 +51,19 @@ function math.rand(low, high)
|
|||||||
return low + (high - low) * math.random()
|
return low + (high - low) * math.random()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function math.normalize(num, conf)
|
||||||
|
conf = conf or 10
|
||||||
|
|
||||||
|
return (num / conf) % 1
|
||||||
|
end
|
||||||
|
|
||||||
|
function math.round(num, places)
|
||||||
|
places = places or 0
|
||||||
|
|
||||||
|
local mult = 10 ^ places
|
||||||
|
return math.floor(num * mult + 0.5) / mult
|
||||||
|
end
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|
||||||
function table.copy(t)
|
function table.copy(t)
|
||||||
@ -91,6 +104,15 @@ function table.random(t)
|
|||||||
return t[math.random(1, #t)]
|
return t[math.random(1, #t)]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function table.shuffle(t)
|
||||||
|
for i = #t, 2, -1 do
|
||||||
|
local j = math.random(i)
|
||||||
|
t[i], t[j] = t[j], t[i]
|
||||||
|
end
|
||||||
|
|
||||||
|
return t
|
||||||
|
end
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|
||||||
local pattern_escape_replacements = {
|
local pattern_escape_replacements = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user