summaryrefslogtreecommitdiff
path: root/pluginchooser/src/ofApp.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2022-10-26 14:11:24 +0100
committerTim Redfern <tim@getdrop.com>2022-10-26 14:11:24 +0100
commitaf01d2b3c81e41950822d416f3dafee23447d421 (patch)
treefc5bc77989888f79627690d58ec1c0170e523d73 /pluginchooser/src/ofApp.cpp
parent17275ae5aee3935920df1cab45652aa20a0b4513 (diff)
parent70772eeeaac50d87d53d823f6136cf957a31ef33 (diff)
WIP
Diffstat (limited to 'pluginchooser/src/ofApp.cpp')
-rw-r--r--pluginchooser/src/ofApp.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/pluginchooser/src/ofApp.cpp b/pluginchooser/src/ofApp.cpp
index 351c429..4c98ea7 100644
--- a/pluginchooser/src/ofApp.cpp
+++ b/pluginchooser/src/ofApp.cpp
@@ -9,6 +9,8 @@ void ofApp::setup(){
plugingui.setup("chaos","",10,10);
+ testsettings.setup("test","",10,160);
+
}
void ofApp::update(){
@@ -23,6 +25,19 @@ void ofApp::draw(){
plugingui.draw();
+ testsettings.draw();
+
+ //seed the pipeline of drawing for the chaos algorithm
+/*
+ n-> delete
+ n-1 -> chaos -> n
+ n-2 -> chaos -> n-1
+
+ . . .
+
+ 1 -> chaos -> 2
+ new frame -> chaos -> 1
+*/
}
void ofApp::exit() {