From 53c9025337166a408febc15078af3e9b136b3bab Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Wed, 19 Aug 2020 15:26:25 -0700 Subject: Add natural gain accel; add scale by DPI, poll rate in GUI --- grapher/Layouts/NaturalGainLayout.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 grapher/Layouts/NaturalGainLayout.cs (limited to 'grapher/Layouts/NaturalGainLayout.cs') diff --git a/grapher/Layouts/NaturalGainLayout.cs b/grapher/Layouts/NaturalGainLayout.cs new file mode 100644 index 0000000..e062850 --- /dev/null +++ b/grapher/Layouts/NaturalGainLayout.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 NaturalGainLayout : LayoutBase + { + public NaturalGainLayout() + : base() + { + Name = "NaturalGain"; + Index = 7; + ShowOptions = new bool[] { true, true, true, false }; + OptionNames = new string[] { Offset, Acceleration, Limit, string.Empty }; + } + } +} -- cgit v1.2.3