You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
514 B
28 lines
514 B
#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 keyPressed(int key);
|
|
void mousePressed(int x, int y, int button);
|
|
void mouseReleased(int x, int y, int button);
|
|
void mouseDragged(int x, int y, int button);
|
|
|
|
void addRandomSurface();
|
|
void addSurface();
|
|
|
|
ofImage image;
|
|
ofxSurfaceManager surfaceManager;
|
|
ofxSurfaceManagerGui gui;
|
|
bool bShowInfo;
|
|
};
|
|
|
|
#endif
|