diff options
| author | Jacob Palecki <[email protected]> | 2020-09-04 01:53:59 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-04 01:53:59 -0700 |
| commit | 6470bff9672c56024c542a74a00429273501879f (patch) | |
| tree | bcb498654c7157d7862dcd816004089bd6dcabe0 /grapher/Layouts | |
| parent | Merge with master (diff) | |
| download | rawaccel-6470bff9672c56024c542a74a00429273501879f.tar.xz rawaccel-6470bff9672c56024c542a74a00429273501879f.zip | |
Remove log and sigmoid styles
Diffstat (limited to 'grapher/Layouts')
| -rw-r--r-- | grapher/Layouts/LogLayout.cs | 21 | ||||
| -rw-r--r-- | grapher/Layouts/SigmoidLayout.cs | 21 |
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 }; - } - } -} |