summaryrefslogtreecommitdiff
path: root/grapher/Layouts/ClassicLayout.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Layouts/ClassicLayout.cs')
-rw-r--r--grapher/Layouts/ClassicLayout.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/ClassicLayout.cs b/grapher/Layouts/ClassicLayout.cs
new file mode 100644
index 0000000..093f7fa
--- /dev/null
+++ b/grapher/Layouts/ClassicLayout.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace grapher.Layouts
+{
+ public class ClassicLayout : LayoutBase
+ {
+ public ClassicLayout()
+ : base()
+ {
+ Name = "Classic";
+ Index = 2;
+ ShowOptions = new bool[] { true, true, true, false };
+ OptionNames = new string[] { Offset, Acceleration, Exponent, string.Empty };
+ }
+ }
+}