diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-02 08:19:25 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-02 08:22:08 +0100 |
commit | 2396ac190a62c30cbc687bb7c19119e1a8fd431e (patch) | |
tree | 7a9395183e54834ebde1eb718dfbd77fad53ce54 /tracker-tobii-eyex/tobii-settings.hpp | |
parent | a46f6d07c5f8c6d65940b2d8ec62535ee1983315 (diff) |
tracker/tobii: TODO
Diffstat (limited to 'tracker-tobii-eyex/tobii-settings.hpp')
-rw-r--r-- | tracker-tobii-eyex/tobii-settings.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tracker-tobii-eyex/tobii-settings.hpp b/tracker-tobii-eyex/tobii-settings.hpp index cfdfa65c..a486306d 100644 --- a/tracker-tobii-eyex/tobii-settings.hpp +++ b/tracker-tobii-eyex/tobii-settings.hpp @@ -23,14 +23,14 @@ struct settings final : public opts { value<tobii_mode> mode { b, "mode", tobii_snap }; - value<slider_value> snap_speed { b, "snap-speed", slider_value(.1, .05, 1) }, - snap_inv_dz { b, "snap-screen-edge-length", slider_value(.35, .1, .5) }; - value<slider_value> acc_speed { b, "acc-speed", slider_value(.1, .05, 1) }, - acc_dz_len { b, "acc-screen-edge-length", slider_value(.1, .1, 1) }; - value<max_yaw> snap_yaw { b, "snap-max-yaw", y20 }, - acc_yaw { b, "acc-max-yaw", y20 }; - value<max_pitch> snap_pitch { b, "snap-max-pitch", p15 }, - acc_pitch { b, "acc-max-pitch", p15 }; + value<slider_value> snap_speed {b, "snap-speed", slider_value(.1, .05, 1)}, + snap_inv_dz {b, "snap-screen-edge-length", slider_value(.35, .1, .5)}; + value<slider_value> acc_speed {b, "acc-speed", slider_value(.1, .05, 1)}, + acc_dz_len {b, "acc-screen-edge-length", slider_value(.1, .1, 1)}; + value<max_yaw> snap_yaw {b, "snap-max-yaw", y20}, + acc_yaw {b, "acc-max-yaw", y20}; + value<max_pitch> snap_pitch {b, "snap-max-pitch", p15}, + acc_pitch {b, "acc-max-pitch", p15}; settings() : opts("tobii-eyex") {} }; |