Videoverarbeitung eines Beerpongspiels. Entstehung im Rahmen einer Praktikumsaufgabe im Fach "Interaktion".
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.cpp 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #include "ofApp.h"
  2. //--------------------------------------------------------------
  3. void ofApp::setup(){
  4. }
  5. //--------------------------------------------------------------
  6. void ofApp::update(){
  7. }
  8. //--------------------------------------------------------------
  9. void ofApp::draw(){
  10. }
  11. //--------------------------------------------------------------
  12. void ofApp::keyPressed(int key){
  13. }
  14. //--------------------------------------------------------------
  15. void ofApp::keyReleased(int key){
  16. }
  17. //--------------------------------------------------------------
  18. void ofApp::mouseMoved(int x, int y ){
  19. }
  20. //--------------------------------------------------------------
  21. void ofApp::mouseDragged(int x, int y, int button){
  22. }
  23. //--------------------------------------------------------------
  24. void ofApp::mousePressed(int x, int y, int button){
  25. }
  26. //--------------------------------------------------------------
  27. void ofApp::mouseReleased(int x, int y, int button){
  28. }
  29. //--------------------------------------------------------------
  30. void ofApp::mouseEntered(int x, int y){
  31. }
  32. //--------------------------------------------------------------
  33. void ofApp::mouseExited(int x, int y){
  34. }
  35. //--------------------------------------------------------------
  36. void ofApp::windowResized(int w, int h){
  37. }
  38. //--------------------------------------------------------------
  39. void ofApp::gotMessage(ofMessage msg){
  40. }
  41. //--------------------------------------------------------------
  42. void ofApp::dragEvent(ofDragInfo dragInfo){
  43. }