summaryrefslogtreecommitdiff
path: root/grapher/Layouts/SigmoidLayout.cs
blob: 88d6c611a1e4853e7ebc8ca57ffb3d1df42f8f75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace grapher.Layouts
{
    public class SigmoidLayout : LayoutBase
    {
        public SigmoidLayout()
        {
            Name = "Sigmoid";
            Index = 5;
            Show = new bool[] { true, true, true }; 
            OptionNames = new string[] { Acceleration, Limit, Midpoint }; 
        }
    }
}