#ifndef H_OF_APP #define H_OF_APP #include "ofMain.h" #include "ofxPiMapper.h" class ofApp : public ofBaseApp { public: void setup(); void update(); void draw(); void exit(); void keyPressed(int key); void addRandomSurface(); void addSurface(); void setFboAsTexture(); ofImage image; ofxSurfaceManager surfaceManager; ofxSurfaceManagerGui gui; bool bShowInfo; ofFbo* fbo; vector rects; vector rectSpeeds; }; #endif