diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-01-30 00:35:30 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-01-30 00:35:30 +0000 |
| commit | d60cc2aa2994f9e63d9570bea4fac8b8a9949b43 (patch) | |
| tree | bc333e74981e1a4bdae2bdc5faf31655033f653f /polyTest/src/ofApp.h | |
| parent | 512d5703e4e1affc1dc5dcd9f2892ac5944c666f (diff) | |
much progress
Diffstat (limited to 'polyTest/src/ofApp.h')
| -rw-r--r-- | polyTest/src/ofApp.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/polyTest/src/ofApp.h b/polyTest/src/ofApp.h new file mode 100644 index 0000000..316649c --- /dev/null +++ b/polyTest/src/ofApp.h @@ -0,0 +1,35 @@ +#pragma once + +#include "ofMain.h" + + + +class ofApp : public ofBaseApp{ + + public: + void setup(); + void update(); + void updateOutput(ofEventArgs & args); + void draw(); + void drawOutput(ofEventArgs & args); + void exit(); + + void outputKeyPressed(ofKeyEventArgs & args); + + void keyPressed(ofKeyEventArgs &keyargs); + void keyReleased(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(int x, int y, int button); + void mouseEntered(int x, int y); + void mouseExited(int x, int y); + void windowResized(int w, int h); + void outputWindowResized(ofResizeEventArgs &resizeargs); + void dragEvent(ofDragInfo dragInfo); + void gotMessage(ofMessage msg); + + ofPolyline polyLineTransform(const ofPolyline& poly, ofMatrix4x4 xform); + + +}; |
