updated js for euclid

master
m3astwood 8 years ago
parent 83a7e4275d
commit 2d68f26074

BIN
floppies/.DS_Store vendored

Binary file not shown.

@ -26,19 +26,18 @@ function setup() {
noLoop() noLoop()
fill(220) fill(220)
textSize(80) textSize(150)
textAlign('right') textAlign('right')
} }
function draw() { function draw() {
background('#151515') background('#151515')
fill(255) fill("#DDDDDD")
for (var i = 0; i < score.length; i++) { for (var i = 0; i < score.length; i++) {
var line = split(score[i].slice(0, -1), ' ') var line = split(score[i].slice(0, -1), ' ')
console.log(line) text(line.join(" "), 90, 150 + (i*90), 710)
text(line.join(" "), 100, (height - (160 * score.length)) + (160 * (i)), 700)
scrVals.push(line) scrVals.push(line)
} }

Loading…
Cancel
Save