From 3d74c83ebf9a1746c32f32ec671d1c3768b98cb4 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Tue, 18 Apr 2023 19:40:11 +0100 Subject: PONK 1 2 3 --- nextus/src/ofApp.cpp | 6 ++++++ nextus/src/ofApp.h | 4 ++++ 2 files changed, 10 insertions(+) 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; + }; -- cgit v1.2.3