diff options
| author | Jacob Palecki <[email protected]> | 2021-01-12 09:25:48 -0800 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-01-12 09:25:48 -0800 |
| commit | 784f7cab713640f4a13880ebc3c5abc10894d23c (patch) | |
| tree | 5504f514c18e6c41c690996eb53974d2efd3fcf4 /grapher/Constants | |
| parent | Directionality menu progress (diff) | |
| download | rawaccel-784f7cab713640f4a13880ebc3c5abc10894d23c.tar.xz rawaccel-784f7cab713640f4a13880ebc3c5abc10894d23c.zip | |
Many small tweaks
Diffstat (limited to 'grapher/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index b86874f..0fb9827 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -46,6 +46,12 @@ namespace grapher /// <summary> Horizontal separation between left side of single dropdown and left side of labels beneath dropdown </summary> public const int DropDownLeftSeparation = 10; + /// <summary> Height of sensitivity chart when displayed alone. </summary> + public const int SensitivityChartAloneHeight = 450; + + /// <summary> Height of sensitivity chart when displayed alongside Velocity and Gain charts. </summary> + public const int SensitivityChartTogetherHeight = 328; + /// <summary> Width of charts when widened </summary> public const int WideChartWidth = 723; @@ -115,10 +121,10 @@ namespace grapher public const string DefaultSettingsFileName = @"settings.json"; /// <summary> Text to direcitonality panel title when panel is closed. </summary> - public const string DirectionalityTitleClosed = "Directionality\u25BC"; + public const string DirectionalityTitleClosed = "Anisotropy\u25BC"; /// <summary> Text to direcitonality panel title when panel is open. </summary> - public const string DirectionalityTitleOpen = "Directionality\u25B2"; + public const string DirectionalityTitleOpen = "Anisotropy\u25B2"; /// <summary> Style used by System.Double.Parse </summary> public const NumberStyles FloatStyle = NumberStyles.Float | NumberStyles.AllowThousands; |