diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-01-18 14:58:40 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-01-18 14:58:40 +0000 |
| commit | 50877e0deaf349f6950de8342045c96d5bce257b (patch) | |
| tree | ca48b0210f5a5b219cf953a9d60ba7e52d98d857 /drawing/src/ofApp.h | |
| parent | 84b99181e804430acedb94ba848a801ffc33e15a (diff) | |
segmenting demo with syphon
Diffstat (limited to 'drawing/src/ofApp.h')
| -rw-r--r-- | drawing/src/ofApp.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drawing/src/ofApp.h b/drawing/src/ofApp.h index 05d4441..32b848c 100644 --- a/drawing/src/ofApp.h +++ b/drawing/src/ofApp.h @@ -4,6 +4,8 @@ #include "ofxSvg.h" #include "lineSegmenter.h" +#include "ofxSyphon.h" + class ofApp : public ofBaseApp{ @@ -30,6 +32,12 @@ class ofApp : public ofBaseApp{ void dragEvent(ofDragInfo dragInfo); void gotMessage(ofMessage msg); - vector <lineSegmenter> segments; + vector <lineSegmenter> segmenters; + int numsegments; + float coverage; + + int mode; + + ofxSyphonServer mainOutputSyphonServer; }; |
