summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nextus/src/ofApp.cpp6
-rw-r--r--nextus/src/ofApp.h4
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;
+
};