summaryrefslogtreecommitdiff
path: root/nextus/src/ofApp.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2023-04-19 16:42:06 +0100
committerTim Redfern <tim@getdrop.com>2023-04-19 16:42:06 +0100
commit66b4e761440da66be27fc2cbe486c6e21ba03f34 (patch)
tree95ce0fe11a0efed1c1bd3c66a03d466a575a4433 /nextus/src/ofApp.cpp
parent9282ef2b25373347b39a440e8e37c38e280f1521 (diff)
include vector text header
Diffstat (limited to 'nextus/src/ofApp.cpp')
-rw-r--r--nextus/src/ofApp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/nextus/src/ofApp.cpp b/nextus/src/ofApp.cpp
index 48bcb9a..048a128 100644
--- a/nextus/src/ofApp.cpp
+++ b/nextus/src/ofApp.cpp
@@ -66,7 +66,7 @@ void ofApp::draw(){
textinput.draw();
//process the pipeline
- vector<colourPolyline> output=svginput.getLines();
+ vector<colourPolyline> output=svginput.getOutput();
ofPushMatrix();
ofTranslate(695,5);
@@ -82,7 +82,7 @@ void ofApp::draw(){
madlaser.panel.draw();
- madlaser.draw(output);
+ madlaser.drawNormalised(output);
}