summaryrefslogtreecommitdiff
path: root/grapher/Layouts/SigmoidGainLayout.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-08-20 00:32:11 -0700
committerJacob Palecki <[email protected]>2020-08-20 00:32:11 -0700
commit3dd0bb9163380de64d0df4f0b5c16dd86979714e (patch)
treee5cb12562df1a3e24ba47759813bbbc502aaf381 /grapher/Layouts/SigmoidGainLayout.cs
parentAdd natural gain accel; add scale by DPI, poll rate in GUI (diff)
downloadrawaccel-3dd0bb9163380de64d0df4f0b5c16dd86979714e.tar.xz
rawaccel-3dd0bb9163380de64d0df4f0b5c16dd86979714e.zip
Sigmoid gain
Diffstat (limited to 'grapher/Layouts/SigmoidGainLayout.cs')
-rw-r--r--grapher/Layouts/SigmoidGainLayout.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/SigmoidGainLayout.cs b/grapher/Layouts/SigmoidGainLayout.cs
new file mode 100644
index 0000000..c620925
--- /dev/null
+++ b/grapher/Layouts/SigmoidGainLayout.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace grapher.Layouts
+{
+ public class SigmoidGainLayout : LayoutBase
+ {
+ public SigmoidGainLayout()
+ : base()
+ {
+ Name = "SigmoidGain";
+ Index = 8;
+ ShowOptions = new bool[] { true, true, true, true };
+ OptionNames = new string[] { Offset, Acceleration, Limit, Midpoint };
+ }
+ }
+}