diff options
| author | Jacob Palecki <[email protected]> | 2020-07-30 02:00:20 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-07-30 02:00:20 -0700 |
| commit | f315e8160e984df93be6667929db34749aa25cfa (patch) | |
| tree | 19684a4f515fc6185e750d7cca3424fa7d96937b /grapher/Layouts/DefaultLayout.cs | |
| parent | Fully use acceloptions (diff) | |
| download | rawaccel-f315e8160e984df93be6667929db34749aa25cfa.tar.xz rawaccel-f315e8160e984df93be6667929db34749aa25cfa.zip | |
Use class heirarchy for layout types
Diffstat (limited to 'grapher/Layouts/DefaultLayout.cs')
| -rw-r--r-- | grapher/Layouts/DefaultLayout.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/DefaultLayout.cs b/grapher/Layouts/DefaultLayout.cs new file mode 100644 index 0000000..2ad3c0e --- /dev/null +++ b/grapher/Layouts/DefaultLayout.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace grapher.Layouts +{ + public class DefaultLayout : LayoutBase + { + public DefaultLayout() + { + Name = "Off"; + Index = 0; + Show = new bool[] { true, true, true }; + OptionNames = new string[] { Acceleration, $"{Limit}\\{Exponent}", Midpoint }; + } + } +} |