summaryrefslogtreecommitdiff
path: root/TRRSS_01_rec/src/testApp.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-04-28 22:51:28 +0100
committerComment <tim@gray.(none)>2013-04-28 22:51:28 +0100
commit7c1399cfdd82eb9a387e8fb4aad15b1e17da7f5d (patch)
tree30a0eb6ad4b5b00b9306a3d26eef3a55c2d1000c /TRRSS_01_rec/src/testApp.h
parent29a366df4f1492a5974db87a215f1a310fc853a2 (diff)
nearly ready for rec
Diffstat (limited to 'TRRSS_01_rec/src/testApp.h')
-rwxr-xr-xTRRSS_01_rec/src/testApp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/TRRSS_01_rec/src/testApp.h b/TRRSS_01_rec/src/testApp.h
index 1da9c6e..00316b0 100755
--- a/TRRSS_01_rec/src/testApp.h
+++ b/TRRSS_01_rec/src/testApp.h
@@ -56,6 +56,8 @@ class guiWindow: public ofxFensterListener{
ofxParameter<bool> drawPoints;
ofxFloatSlider pSize;
ofxParameter<float> pointSize;
+ ofxToggle iOut;
+ ofxParameter<bool> insideOut;
void setup(){
@@ -68,6 +70,8 @@ class guiWindow: public ofxFensterListener{
gui.add(dPoints.setup("draw points",drawPoints));
pointSize=2.0;
gui.add(pSize.setup("point size",pointSize,1.0,20.0,255));
+ insideOut=false;
+ gui.add(iOut.setup("inside out",drawPoints));
}
void draw() { gui.draw(); }