diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-02-03 21:27:51 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-02-03 21:27:51 +0000 |
| commit | 38cfe584a01ada7c51615cddd19419553bfeef12 (patch) | |
| tree | 917ae1f68a53e041e872211e3bf1c6c0da02d435 /gui/src/ofApp.h | |
| parent | 29f6e4f30f1295144464585ad682f582c85e4247 (diff) | |
several improvements
Diffstat (limited to 'gui/src/ofApp.h')
| -rw-r--r-- | gui/src/ofApp.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gui/src/ofApp.h b/gui/src/ofApp.h index 876308c..ed4def5 100644 --- a/gui/src/ofApp.h +++ b/gui/src/ofApp.h @@ -113,6 +113,14 @@ class ofApp: public ofBaseApp, public ofxMidiListener { ofxFloatSlider segmenter_length; ofxIntSlider segmenter_number; + //transforms + ofxToggle use_rotate; + ofxFloatSlider xf_rotate; + ofxToggle use_scale; + ofxFloatSlider xf_scale_speed; + ofxFloatSlider xf_scale_min; + ofxFloatSlider xf_scale_max; + //======================================= //MIDI ofxMidiIn midiIn; @@ -129,9 +137,12 @@ class ofApp: public ofBaseApp, public ofxMidiListener { set <int> shape_selection; int framecounter; float phase,prev_time; //to calculate phase + float rotate_amt; //======================================= //Mask clipping + ofPolyline safety_frame; + vector <ofPolyline> mask; ofx::Clipper clipper; @@ -149,4 +160,6 @@ class ofApp: public ofBaseApp, public ofxMidiListener { ofxXmlSettings XML; + + }; |
