diff options
author | David Runge <dave@sleepmap.de> | 2016-01-05 12:49:34 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-01-05 12:49:34 +0100 |
commit | 5c408a7b70187fd9da6c6e2f9a4c4d0693b93f03 (patch) | |
tree | 28531b147dcfb6f1305389edbd8700bb8802646a | |
parent | 53cc9939a86946df6a9065659e2e47e70dd48c6a (diff) | |
download | processing-sketchbook-5c408a7b70187fd9da6c6e2f9a4c4d0693b93f03.tar.gz processing-sketchbook-5c408a7b70187fd9da6c6e2f9a4c4d0693b93f03.tar.bz2 processing-sketchbook-5c408a7b70187fd9da6c6e2f9a4c4d0693b93f03.tar.xz processing-sketchbook-5c408a7b70187fd9da6c6e2f9a4c4d0693b93f03.zip |
AutoVisual/AutoVisual.pde: Switching to a 30fps framerate and switching
the loop of (noLoop()) for testing purposes.
-rw-r--r-- | AutoVisual/AutoVisual.pde | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/AutoVisual/AutoVisual.pde b/AutoVisual/AutoVisual.pde index 84b733b..2b04f5f 100644 --- a/AutoVisual/AutoVisual.pde +++ b/AutoVisual/AutoVisual.pde @@ -10,6 +10,8 @@ float circleSize = 512; void setup() { size(640, 360); + frameRate(30); + noLoop(); midx = width/2; midy = height/2; square = new IGPSquare(midx, midy, circleSize, 12); |