summaryrefslogtreecommitdiff
path: root/grapher/Layouts
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-04 01:53:59 -0700
committerJacob Palecki <[email protected]>2020-09-04 01:53:59 -0700
commit6470bff9672c56024c542a74a00429273501879f (patch)
treebcb498654c7157d7862dcd816004089bd6dcabe0 /grapher/Layouts
parentMerge with master (diff)
downloadrawaccel-6470bff9672c56024c542a74a00429273501879f.tar.xz
rawaccel-6470bff9672c56024c542a74a00429273501879f.zip
Remove log and sigmoid styles
Diffstat (limited to 'grapher/Layouts')
-rw-r--r--grapher/Layouts/LogLayout.cs21
-rw-r--r--grapher/Layouts/SigmoidLayout.cs21
2 files changed, 0 insertions, 42 deletions
diff --git a/grapher/Layouts/LogLayout.cs b/grapher/Layouts/LogLayout.cs
deleted file mode 100644
index 4b73683..0000000
--- a/grapher/Layouts/LogLayout.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using grapher.Models.Serialized;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace grapher.Layouts
-{
- public class LogLayout : LayoutBase
- {
- public LogLayout()
- : base()
- {
- Name = "Logarithmic";
- Index = (int)AccelMode.logarithmic;
- ShowOptions = new bool[] { true, true, false, false, true, true };
- OptionNames = new string[] { Offset, Acceleration, string.Empty, string.Empty, Cap, Weight };
- }
- }
-}
diff --git a/grapher/Layouts/SigmoidLayout.cs b/grapher/Layouts/SigmoidLayout.cs
deleted file mode 100644
index e5e35cd..0000000
--- a/grapher/Layouts/SigmoidLayout.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using grapher.Models.Serialized;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace grapher.Layouts
-{
- public class SigmoidLayout : LayoutBase
- {
- public SigmoidLayout()
- : base()
- {
- Name = "Sigmoid";
- Index = (int)AccelMode.sigmoid;
- ShowOptions = new bool[] { true, true, true, true, false, true };
- OptionNames = new string[] { Offset, Acceleration, Limit, Midpoint, string.Empty, Weight };
- }
- }
-}