Newer
Older
#include "VideoSource.h"
#include "ofMain.h"
#include "ofxPiMapper.h"
#include "projectorSource.h"
class Projector: public ofBaseApp {
void setup();
void update();
void draw();
void mousePressed(int x, int y, int button);
void keyReleased(int key);
void mouseDragged(int x, int y, int button);
void mouseReleased(int x, int y, int button);
float xp1, yp1;
int gwidth, gheight;
ofxPiMapper mapper;
shared_ptr<State> sharedState;
ProjectorSource pSource;