diff options
| author | JacobPalecki <[email protected]> | 2020-09-21 14:20:18 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-09-21 14:20:18 -0700 |
| commit | 4ec16a2ff35e0e910a13f92713d56d317b24e790 (patch) | |
| tree | c4aead24d52e3002cfd3282ddd697a3766de405a /grapher/Constants | |
| parent | Merge pull request #20 from JacobPalecki/GUI (diff) | |
| parent | x/y diff sens works (diff) | |
| download | rawaccel-4ec16a2ff35e0e910a13f92713d56d317b24e790.tar.xz rawaccel-4ec16a2ff35e0e910a13f92713d56d317b24e790.zip | |
Merge pull request #21 from JacobPalecki/GUI
GUI: Icon, Separate X/Y sens mode, some fixes
Diffstat (limited to 'grapher/Constants')
| -rw-r--r-- | grapher/Constants/Constants.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/grapher/Constants/Constants.cs b/grapher/Constants/Constants.cs index aaf8bb9..a51b09c 100644 --- a/grapher/Constants/Constants.cs +++ b/grapher/Constants/Constants.cs @@ -89,6 +89,21 @@ namespace grapher /// <summary> Default text to be displayed on write button. </summary> public const string WriteButtonDelayText = "Delay"; + /// <summary> Title of sensitivity chart. </summary> + public const string SensitivityChartTitle = "Sensitivity"; + + /// <summary> Title of velocity chart. </summary> + public const string VelocityChartTitle = "Velocity"; + + /// <summary> Title of gain chart. </summary> + public const string GainChartTitle = "Gain"; + + /// <summary> Text for x component. </summary> + public const string XComponent = "X"; + + /// <summary> Text for y component. </summary> + public const string YComponent = "Y"; + /// <summary> Default name of settings file. </summary> public const string DefaultSettingsFileName = @"settings.json"; |