diff options
| author | Jacob Palecki <[email protected]> | 2020-09-09 19:56:54 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-09 19:56:54 -0700 |
| commit | 9b4556c59f063e5c6816338c1608b354e1441fb0 (patch) | |
| tree | 5232bf3bf9c3f0c75569a2f3a03262931e71e9bc /grapher/Models | |
| parent | Further work on guide (diff) | |
| download | rawaccel-9b4556c59f063e5c6816338c1608b354e1441fb0.tar.xz rawaccel-9b4556c59f063e5c6816338c1608b354e1441fb0.zip | |
Add improved logarithm style
Diffstat (limited to 'grapher/Models')
| -rw-r--r-- | grapher/Models/Options/AccelTypeOptions.cs | 1 | ||||
| -rw-r--r-- | grapher/Models/Serialized/DriverSettings.cs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/grapher/Models/Options/AccelTypeOptions.cs b/grapher/Models/Options/AccelTypeOptions.cs index 14c2019..917ac5c 100644 --- a/grapher/Models/Options/AccelTypeOptions.cs +++ b/grapher/Models/Options/AccelTypeOptions.cs @@ -18,6 +18,7 @@ namespace grapher new ClassicLayout(), new NaturalLayout(), new PowerLayout(), + new LogarithmLayout(), new NaturalGainLayout(), new SigmoidGainLayout(), new OffLayout() diff --git a/grapher/Models/Serialized/DriverSettings.cs b/grapher/Models/Serialized/DriverSettings.cs index d7c9444..d42187c 100644 --- a/grapher/Models/Serialized/DriverSettings.cs +++ b/grapher/Models/Serialized/DriverSettings.cs @@ -8,7 +8,7 @@ namespace grapher.Models.Serialized public enum AccelMode { - linear, classic, natural, naturalgain, sigmoidgain, power, noaccel + linear, classic, natural, naturalgain, sigmoidgain, power, logarithm, noaccel } #endregion Enumerations |