diff options
| author | Tim Redfern <redfernt@gmail.com> | 2023-09-20 23:35:53 +0100 |
|---|---|---|
| committer | Tim Redfern <redfernt@gmail.com> | 2023-09-20 23:35:53 +0100 |
| commit | cde8fab86a40be5d3c99bfd2d97605638647179f (patch) | |
| tree | 5f3d25c4eb6757ba399f746dfb96ea175ad8467f /futuregael/src/ofApp.h | |
| parent | d47d1294179af82651602c5b548658bcd3b7bdac (diff) | |
mostly works
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; }; |
