Advertisement
Guest User

ofApp.h

a guest
Dec 25th, 2015
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include "ofMain.h"
  4. #include "oscThread.h"
  5.  
  6. class ofApp : public ofBaseApp{
  7.  
  8. public:
  9. void setup();
  10. void update();
  11. void draw();
  12.  
  13. void keyPressed(int key);
  14. void keyReleased(int key);
  15. void dragEvent(ofDragInfo dragInfo);
  16. void gotMessage(ofMessage msg);
  17.  
  18. int numMesh;
  19.  
  20. ofEasyCam cam;
  21. ofMesh mesh;
  22. vector< vector<oscThread> > braid;
  23.  
  24. //Img tools
  25. ofImage img;
  26. bool outputImg = false;
  27. int frameCounter;
  28. int shotCounter = 0;
  29. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement