summaryrefslogtreecommitdiff
path: root/grapher/Layouts
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-09-26 15:13:53 -0700
committerJacob Palecki <[email protected]>2020-09-26 15:13:53 -0700
commit80ffeaf6d6cb00106991bb7cc202c957c3e10d34 (patch)
tree7e3adf9cf7aa3f49faed6d1af79108965fa2e9dc /grapher/Layouts
parentScale Last Mouse Move by poll rate (diff)
downloadrawaccel-80ffeaf6d6cb00106991bb7cc202c957c3e10d34.tar.xz
rawaccel-80ffeaf6d6cb00106991bb7cc202c957c3e10d34.zip
Remove logarithm
Diffstat (limited to 'grapher/Layouts')
-rw-r--r--grapher/Layouts/LogarithmLayout.cs22
1 files changed, 0 insertions, 22 deletions
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);
- }
- }
-}