diff options
| author | Jacob Palecki <[email protected]> | 2020-09-22 15:26:08 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-22 15:26:08 -0700 |
| commit | f4ff6334df8a3fd66d13082606b69a78fa592237 (patch) | |
| tree | 6db3b486a4c19ed02d5c4368fd18d29b2abec78d /grapher/Constants | |
| parent | Save option to show velocity and gain on gui startup (diff) | |
| download | rawaccel-f4ff6334df8a3fd66d13082606b69a78fa592237.tar.xz rawaccel-f4ff6334df8a3fd66d13082606b69a78fa592237.zip | |
Remove sigmoidgain, only allow one instance of grapher to run at a time
Diffstat (limited to 'grapher/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index 2ce6763..b41ffa2 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -21,9 +21,6 @@ namespace grapher /// <summary> Ratio of max (X, Y) used in "by component" calulations to those used in "whole vector" calculations. </summary> public const double XYToCombinedRatio = 1.4; - /// <summary> Possible options to display in a layout. </summary> - public const int PossibleOptionsCount = 6; - /// <summary> Separation between X and Y active value labels, in pixels. </summary> public const int ActiveLabelXYSeparation = 2; @@ -60,6 +57,7 @@ namespace grapher /// <summary> Left placement of charts when narrowed </summary> public const int NarrowChartLeft = 482; + /// <summary> Vertical placement of write button above bottom of sensitivity graph </summary> public const int WriteButtonVerticalOffset = 80; /// <summary> Format string for shortened x and y textboxes. </summary> |