From 0c2bc660e9350307930dfc40e2da1d46306e45a3 Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Sun, 11 Sep 2016 14:30:39 -0400 Subject: set tone by index based on grid.. idk --- js/vendor/util.js | 1 + 1 file changed, 1 insertion(+) (limited to 'js/vendor') diff --git a/js/vendor/util.js b/js/vendor/util.js index 0aabd29..b5ee7c7 100644 --- a/js/vendor/util.js +++ b/js/vendor/util.js @@ -13,6 +13,7 @@ function randint(n){ return rand(n)|0 } function randrange(a,b){ return a + rand(b-a) } function choice(a){ return a[randint(a.length)] } function clamp(n,a,b){ return n