summaryrefslogtreecommitdiff
path: root/testpoints/src/testApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'testpoints/src/testApp.h')
-rw-r--r--testpoints/src/testApp.h33
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
+
+