mirror of
https://github.com/kepler155c/opus
synced 2025-01-14 01:20:28 +00:00
Merge pull request #5 from sorucoder/develop-1.8
Removed util.random, added util.randomFloat
This commit is contained in:
commit
a6c8ecccd4
@ -132,12 +132,13 @@ end
|
|||||||
-- http://lua-users.org/wiki/SimpleRound
|
-- http://lua-users.org/wiki/SimpleRound
|
||||||
function Util.round(num, idp)
|
function Util.round(num, idp)
|
||||||
local mult = 10^(idp or 0)
|
local mult = 10^(idp or 0)
|
||||||
return util.signum(num) * math.floor(math.abs(num) * mult + 0.5) / mult
|
return Util.signum(num) * math.floor(math.abs(num) * mult + 0.5) / mult
|
||||||
end
|
end
|
||||||
|
|
||||||
function Util.random(max, min)
|
function Util.randomFloat(max, min)
|
||||||
min = min or 0
|
min = min or 0
|
||||||
return math.random(0, max-min) + min
|
max = max or 1
|
||||||
|
return (max-min) * math.random() + min
|
||||||
end
|
end
|
||||||
|
|
||||||
--[[ Table functions ]] --
|
--[[ Table functions ]] --
|
||||||
|
Loading…
Reference in New Issue
Block a user