summaryrefslogtreecommitdiff
path: root/grapher/Layouts
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-22 15:26:08 -0700
committerJacob Palecki <[email protected]>2020-09-22 15:26:08 -0700
commitf4ff6334df8a3fd66d13082606b69a78fa592237 (patch)
tree6db3b486a4c19ed02d5c4368fd18d29b2abec78d /grapher/Layouts
parentSave option to show velocity and gain on gui startup (diff)
downloadrawaccel-f4ff6334df8a3fd66d13082606b69a78fa592237.tar.xz
rawaccel-f4ff6334df8a3fd66d13082606b69a78fa592237.zip
Remove sigmoidgain, only allow one instance of grapher to run at a time
Diffstat (limited to 'grapher/Layouts')
-rw-r--r--grapher/Layouts/SigmoidGainLayout.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/grapher/Layouts/SigmoidGainLayout.cs b/grapher/Layouts/SigmoidGainLayout.cs
deleted file mode 100644
index 684de83..0000000
--- a/grapher/Layouts/SigmoidGainLayout.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using grapher.Models.Serialized;
-
-namespace grapher.Layouts
-{
- public class SigmoidGainLayout : LayoutBase
- {
- public SigmoidGainLayout()
- : base()
- {
- Name = "SigmoidGain";
- Index = (int)AccelMode.sigmoidgain;
- LogarithmicCharts = false;
-
- AccelLayout = new OptionLayout(true, Acceleration);
- CapLayout = new OptionLayout(false, string.Empty);
- WeightLayout = new OptionLayout(true, Weight);
- OffsetLayout = new OptionLayout(false, string.Empty);
- LimExpLayout = new OptionLayout(true, Limit);
- MidpointLayout = new OptionLayout(true, Midpoint);
- }
- }
-}