diff options
author | githubert <ikseno@googlemail.com> | 2013-05-27 00:06:28 +0200 |
---|---|---|
committer | githubert <ikseno@googlemail.com> | 2013-05-27 00:06:28 +0200 |
commit | 4ba89267cbaab14868bb2cc7f6eb52b5b66d9683 (patch) | |
tree | edfeeffa74bfad83864d592d9de6a2ff0626fda5 | |
parent | 1b7f3cc8bb966ec0c308532695d58adb642dad04 (diff) |
-rw-r--r-- | flipdot/flipdot.pde | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/flipdot/flipdot.pde b/flipdot/flipdot.pde index 6738128..e2028db 100644 --- a/flipdot/flipdot.pde +++ b/flipdot/flipdot.pde @@ -25,8 +25,6 @@ void draw() { x = (mouseX - (mouseX % scale)) / scale; y = (mouseY - (mouseY % scale))/ scale; - println("x, y: " + x + " " + y); - if( mousePressed && (x < w && x >= 0) && (y < h && y >= 0) ) { |