diff options
Diffstat (limited to 'grapher/Layouts/SigmoidGainLayout.cs')
| -rw-r--r-- | grapher/Layouts/SigmoidGainLayout.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/grapher/Layouts/SigmoidGainLayout.cs b/grapher/Layouts/SigmoidGainLayout.cs new file mode 100644 index 0000000..c620925 --- /dev/null +++ b/grapher/Layouts/SigmoidGainLayout.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 SigmoidGainLayout : LayoutBase + { + public SigmoidGainLayout() + : base() + { + Name = "SigmoidGain"; + Index = 8; + ShowOptions = new bool[] { true, true, true, true }; + OptionNames = new string[] { Offset, Acceleration, Limit, Midpoint }; + } + } +} |