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.

ofApp.h 803B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include "ofMain.h"
  3. class ofApp : public ofBaseApp{
  4. public:
  5. void setup(); //alles ab einstieg des programms wird einmal am anfang
  6. void update(); // verarbeitung der daten
  7. void draw(); //darstellung der informationen
  8. void keyPressed(int key); // integer liefer gedrückt taste beim drücken
  9. void keyReleased(int key); // key released wenn taste los gelassen wird
  10. void mouseMoved(int x, int y );
  11. void mouseDragged(int x, int y, int button);
  12. void mousePressed(int x, int y, int button);
  13. void mouseReleased(int x, int y, int button);
  14. void mouseEntered(int x, int y);
  15. void mouseExited(int x, int y);
  16. void windowResized(int w, int h);
  17. void dragEvent(ofDragInfo dragInfo);
  18. void gotMessage(ofMessage msg);
  19. ofVideoGrabber cam;
  20. ofVec2f resolution;
  21. };