summaryrefslogtreecommitdiff
path: root/TRRSS_01_rec/src/testApp.h
diff options
context:
space:
mode:
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(); }