/ Published in: ActionScript 3
Expand |
Embed | Plain Text
function random(min:Number, max:Number):Number { return min + Math.random() * (max - min); }
You need to login to post a comment.
tuffstudio on 01/19/11
1 person have marked this snippet as a favorite
function random(min:Number, max:Number):Number { return min + Math.random() * (max - min); }
You need to login to post a comment.