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.
38 lines
633 B
38 lines
633 B
#include "ofApp.h"
|
|
|
|
void ofApp::setup(){
|
|
ofBackground(0);
|
|
mapper.setup();
|
|
|
|
#ifdef TARGET_RASPBERRY_PI
|
|
ofSetFullscreen(true);
|
|
#endif
|
|
}
|
|
|
|
void ofApp::update(){
|
|
mapper.update();
|
|
}
|
|
|
|
void ofApp::draw(){
|
|
mapper.draw();
|
|
}
|
|
|
|
void ofApp::keyPressed(int key){
|
|
mapper.keyPressed(key);
|
|
}
|
|
|
|
void ofApp::keyReleased(int key){
|
|
mapper.keyReleased(key);
|
|
}
|
|
|
|
void ofApp::mouseDragged(int x, int y, int button){
|
|
mapper.mouseDragged(x, y, button);
|
|
}
|
|
|
|
void ofApp::mousePressed(int x, int y, int button){
|
|
mapper.mousePressed(x, y, button);
|
|
}
|
|
|
|
void ofApp::mouseReleased(int x, int y, int button){
|
|
mapper.mouseReleased(x, y, button);
|
|
}
|
|
|