summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-06-20 21:55:12 +0300
committerYuval Adam <yuval@y3xz.com>2015-06-20 21:55:12 +0300
commitd711f27486f0dddf53e624b635efee8591c18c30 (patch)
treef7fb50e76e9e7f1f536043f8fb40b7da6cd23d82
parent95b65f04b012adbece015421123f0d8333dc6b67 (diff)
Remove console log
-rw-r--r--client/effects.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/client/effects.js b/client/effects.js
index 49ae761..08da3ee 100644
--- a/client/effects.js
+++ b/client/effects.js
@@ -215,11 +215,8 @@ Effects = (function() {
for (var y = 0; y < gridDim; y++) {
for(var x = 0; x < gridDim; x++) {
var c = cols[(y * gridDim) + x];
-
var nc = new paper.Color(c[0], c[1], c[2], 0.5);
- console.log(x, y, nc);
-
var rec = new paper.Path.Rectangle({
point: [x * gridSize, y * gridSize],
size: [gridSize, gridSize],