diff options
Diffstat (limited to 'grapher/Layouts/LogLayout.cs')
| -rw-r--r-- | grapher/Layouts/LogLayout.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/grapher/Layouts/LogLayout.cs b/grapher/Layouts/LogLayout.cs new file mode 100644 index 0000000..7c7fd9e --- /dev/null +++ b/grapher/Layouts/LogLayout.cs @@ -0,0 +1,19 @@ +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() + { + Name = "Logarithmic"; + Index = 4; + Show = new bool[] { true, false, false }; + OptionNames = new string[] { Acceleration, string.Empty, string.Empty }; + } + } +} |