摘要: let math = {} math.seed = 5; math.random = function(max, min) { max = max || 1; min = min || 0; math.seed = (math.seed * 9301 + 49297) % 233280; var rnd = math.seed / 233280.0; return min + rnd * (max 阅读全文
posted @ 2019-09-18 09:32 吴筱军 阅读(252) 评论(0) 推荐(0) 编辑