diff options
Diffstat (limited to 'futuregael/src/ofApp.h')
| -rw-r--r-- | futuregael/src/ofApp.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/futuregael/src/ofApp.h b/futuregael/src/ofApp.h index 20bf7d6..8e4b4aa 100644 --- a/futuregael/src/ofApp.h +++ b/futuregael/src/ofApp.h @@ -1,6 +1,9 @@ #pragma once #include "ofMain.h" +#include "ofxGui.h" +#include "ofxHelios.h" +#include "lineTransformer.h" #include "show.h" @@ -23,4 +26,22 @@ class ofApp : public ofBaseApp{ void dragEvent(ofDragInfo dragInfo); Show show; + + ofxHelios laser; + + //======= laser gui + + ofxPanel lasergui; + ofParameter<bool> laser_power; + ofParameter<int> laser_intensity; + ofParameter<int> laser_points; + ofParameter<int> laser_subdivide; + ofParameter<int> laser_blank_num; + ofParameter<float> laser_max_angle; + + ofxPanel textgui; + ofParameter<float> laser_scale; + ofParameter<float> laser_pos_x; + ofParameter<float> laser_pos_y; + ofParameter<float> text_speed; }; |
