diff options
| author | Jacob Palecki <[email protected]> | 2021-07-09 17:08:00 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-07-09 17:08:00 -0700 |
| commit | b798fe074a2ff6c6498bfef3be1dc3e1a1b03e0c (patch) | |
| tree | 4714cbed6a0b622f9220a039784c77b6ac5ea8fc /grapher/Layouts/LayoutBase.cs | |
| parent | fix filename casing in docs (diff) | |
| download | rawaccel-b798fe074a2ff6c6498bfef3be1dc3e1a1b03e0c.tar.xz rawaccel-b798fe074a2ff6c6498bfef3be1dc3e1a1b03e0c.zip | |
Add separate box for power in classic mode
Diffstat (limited to 'grapher/Layouts/LayoutBase.cs')
| -rw-r--r-- | grapher/Layouts/LayoutBase.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/grapher/Layouts/LayoutBase.cs b/grapher/Layouts/LayoutBase.cs index db914dc..bc95d8d 100644 --- a/grapher/Layouts/LayoutBase.cs +++ b/grapher/Layouts/LayoutBase.cs @@ -7,6 +7,7 @@ namespace grapher.Layouts public const string Acceleration = "Acceleration"; public const string Scale = "Scale"; public const string Exponent = "Exponent"; + public const string PowerClassic = "Power"; public const string Limit = "Limit"; public const string Midpoint = "Midpoint"; public const string Motivity = "Motivity"; @@ -26,6 +27,7 @@ namespace grapher.Layouts WeightLayout = new OptionLayout(false, string.Empty); OffsetLayout = new OptionLayout(false, string.Empty); LimitLayout = new OptionLayout(false, string.Empty); + PowerClassicLayout = new OptionLayout(false, string.Empty); ExponentLayout = new OptionLayout(false, string.Empty); MidpointLayout = new OptionLayout(false, string.Empty); LutTextLayout = new OptionLayout(false, string.Empty); @@ -56,6 +58,8 @@ namespace grapher.Layouts protected OptionLayout LimitLayout { get; set; } + protected OptionLayout PowerClassicLayout { get; set; } + protected OptionLayout ExponentLayout { get; set; } protected OptionLayout MidpointLayout { get; set; } @@ -81,6 +85,7 @@ namespace grapher.Layouts IOption weightOption, IOption offsetOption, IOption limitOption, + IOption powerClassicOption, IOption expOption, IOption midpointOption, IOption lutTextOption, @@ -99,6 +104,7 @@ namespace grapher.Layouts (WeightLayout, weightOption), (OffsetLayout, offsetOption), (LimitLayout, limitOption), + (PowerClassicLayout, powerClassicOption), (ExponentLayout, expOption), (MidpointLayout, midpointOption), (LutTextLayout, lutTextOption), @@ -131,6 +137,7 @@ namespace grapher.Layouts IOption weightOption, IOption offsetOption, IOption limitOption, + IOption powerClassicOption, IOption expOption, IOption midpointOption, IOption lutTextOption, @@ -144,6 +151,7 @@ namespace grapher.Layouts weightOption, offsetOption, limitOption, + powerClassicOption, expOption, midpointOption, lutTextOption, |