diff options
| author | Tim Redfern <tim@getdrop.com> | 2023-04-18 19:40:11 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2023-04-18 19:40:11 +0100 |
| commit | 3d74c83ebf9a1746c32f32ec671d1c3768b98cb4 (patch) | |
| tree | d7f8272c66ad5954a6bcaef322ff3e515be4f5f4 | |
| parent | 3b89e73c157f0eef8a3479b613491c8343f9c43b (diff) | |
PONK 1 2 3
| -rw-r--r-- | nextus/src/ofApp.cpp | 6 | ||||
| -rw-r--r-- | nextus/src/ofApp.h | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/nextus/src/ofApp.cpp b/nextus/src/ofApp.cpp index 088c394..349c1a4 100644 --- a/nextus/src/ofApp.cpp +++ b/nextus/src/ofApp.cpp @@ -15,6 +15,8 @@ void ofApp::setup(){ load_settings(); + madlaser.setup("madlaser",995,510); + ofSetFrameRate(60); } @@ -78,6 +80,10 @@ void ofApp::draw(){ } ofPopMatrix(); + madlaser.panel.draw(); + + madlaser.draw(output); + } diff --git a/nextus/src/ofApp.h b/nextus/src/ofApp.h index a484129..47f5a7f 100644 --- a/nextus/src/ofApp.h +++ b/nextus/src/ofApp.h @@ -223,4 +223,8 @@ class ofApp: public ofBaseApp, public ofxMidiListener { svgPanel svginput; svgPanel textinput; + //======================================= //output + + ofxPONKSenderPanel madlaser; + }; |
