From d60cc2aa2994f9e63d9570bea4fac8b8a9949b43 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Tue, 30 Jan 2018 00:35:30 +0000 Subject: much progress --- polyTest/src/ofApp.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 polyTest/src/ofApp.h (limited to 'polyTest/src/ofApp.h') 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); + + +}; -- cgit v1.2.3