summaryrefslogtreecommitdiff
path: root/grapher/Layouts/NaturalLayout.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Layouts/NaturalLayout.cs')
-rw-r--r--grapher/Layouts/NaturalLayout.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/NaturalLayout.cs b/grapher/Layouts/NaturalLayout.cs
new file mode 100644
index 0000000..743135c
--- /dev/null
+++ b/grapher/Layouts/NaturalLayout.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 NaturalLayout : LayoutBase
+ {
+ public NaturalLayout()
+ : base()
+ {
+ Name = "Natural";
+ Index = 3;
+ ShowOptions = new bool[] { true, true, true, false };
+ OptionNames = new string[] { Offset, Acceleration, Limit, string.Empty };
+ }
+ }
+}