diff options
Diffstat (limited to 'audioin/src/ofApp.h')
| -rw-r--r-- | audioin/src/ofApp.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/audioin/src/ofApp.h b/audioin/src/ofApp.h index 2386ef8..c0bba64 100644 --- a/audioin/src/ofApp.h +++ b/audioin/src/ofApp.h @@ -1,6 +1,7 @@ #pragma once #include "ofMain.h" +#include "ofxHelios.h" //#include <baudvine/ringbuf.h> @@ -12,9 +13,19 @@ TEXT+SOUND oscilloscopes on letters what is the message -text from twitter +text from twitter/ SMS + +transformation of text/ oscilloscopes with animation/ audio animation/ gamepad + +colours (audio?) can we get a sillouette from kinect to laser + +kinect normal stuff + +The biggest thing missing: +A framework to combine these things + */ class Buffer{ public: @@ -28,7 +39,7 @@ public: } ~Buffer(){ if (data){ - //delete[] data; //why is this throwing an error + delete[] data; //why is this throwing an error } } void add(float * input, int num){ @@ -87,4 +98,6 @@ class ofApp : public ofBaseApp{ float vScale; float lineWidth; + + ofxHelios laser; }; |
