diff options
| author | Comment <tim@gray.(none)> | 2013-06-24 23:18:03 +0100 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-06-24 23:18:03 +0100 |
| commit | 11229ede83c48fab01e6e566155536b5e7e9d762 (patch) | |
| tree | dcd2671c419bdbddde9191712dc3cf5ab2a98f04 /testpoints/src/testApp.h | |
| parent | ff979a86dc8f031c823cd8806324b0e8c4ca069b (diff) | |
yay
Diffstat (limited to 'testpoints/src/testApp.h')
| -rw-r--r-- | testpoints/src/testApp.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testpoints/src/testApp.h b/testpoints/src/testApp.h new file mode 100644 index 0000000..7b0c226 --- /dev/null +++ b/testpoints/src/testApp.h @@ -0,0 +1,33 @@ +#ifndef _TEST_APP +#define _TEST_APP + +#include "ofMain.h" + + +class testApp : public ofBaseApp{ + + public: + + void setup(); + void update(); + void draw(); + + void keyPressed (int key); + void mouseMoved(int x, int y ); + void mouseDragged(int x, int y, int button); + void mousePressed(int x, int y, int button); + void mouseReleased(); + + + private: + + vector<ofPoint> points; + vector<ofPoint> speeds; + vector<ofColor> colours; + vector<float> sizes; + +}; + +#endif + + |
