From 80ffeaf6d6cb00106991bb7cc202c957c3e10d34 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Sat, 26 Sep 2020 15:13:53 -0700 Subject: Remove logarithm --- grapher/Layouts/LogarithmLayout.cs | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 grapher/Layouts/LogarithmLayout.cs (limited to 'grapher/Layouts') diff --git a/grapher/Layouts/LogarithmLayout.cs b/grapher/Layouts/LogarithmLayout.cs deleted file mode 100644 index e39dbe7..0000000 --- a/grapher/Layouts/LogarithmLayout.cs +++ /dev/null @@ -1,22 +0,0 @@ -using grapher.Models.Serialized; - -namespace grapher.Layouts -{ - public class LogarithmLayout : LayoutBase - { - public LogarithmLayout () - : base() - { - Name = "Logarithm"; - Index = (int)AccelMode.logarithm; - LogarithmicCharts = false; - - AccelLayout = new OptionLayout(true, Scale); - CapLayout = new OptionLayout(true, Cap); - WeightLayout = new OptionLayout(true, Weight); - OffsetLayout = new OptionLayout(true, Offset); - LimExpLayout = new OptionLayout(false, string.Empty); - MidpointLayout = new OptionLayout(false, string.Empty); - } - } -} -- cgit v1.2.3 From 5d2741d95a9f227534998ecc2dfa6fdb8b95494e Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Sat, 26 Sep 2020 15:42:29 -0700 Subject: Rename accel to scale in power mode --- grapher/Layouts/PowerLayout.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grapher/Layouts') diff --git a/grapher/Layouts/PowerLayout.cs b/grapher/Layouts/PowerLayout.cs index 5391506..e12ac4a 100644 --- a/grapher/Layouts/PowerLayout.cs +++ b/grapher/Layouts/PowerLayout.cs @@ -11,7 +11,7 @@ namespace grapher.Layouts Index = (int)AccelMode.power; LogarithmicCharts = false; - AccelLayout = new OptionLayout(true, Acceleration); + AccelLayout = new OptionLayout(true, Scale); CapLayout = new OptionLayout(true, Cap); WeightLayout = new OptionLayout(true, Weight); OffsetLayout = new OptionLayout(true, Offset); -- cgit v1.2.3