Can we have a random.range function?
I was programming a game and was trying to work with random numbers and I needed to put them in a range so I looked it up but couldn't find anything so I wrote this.
\random.range = function(minimum, maximum)
return (random.next()*(maximum-minimum))+minimum
end
This seems Like a pretty basic thing to make but would save a lot of time @gilles could you possibly integrate this in the next version?