diff options
| author | Jacob Palecki <[email protected]> | 2020-09-22 14:01:05 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-22 14:01:05 -0700 |
| commit | 720a45289b2342c62eebb0e1cee3c4b88c9fe696 (patch) | |
| tree | 19447d387a1f69eb16baebaf6b2fc97dda5b3709 /grapher/Models/Calculations/AccelChartData.cs | |
| parent | Rename experiment two to motivity (diff) | |
| download | rawaccel-720a45289b2342c62eebb0e1cee3c4b88c9fe696.tar.xz rawaccel-720a45289b2342c62eebb0e1cee3c4b88c9fe696.zip | |
Scaling improvement, remove y data from xy combined
Diffstat (limited to 'grapher/Models/Calculations/AccelChartData.cs')
| -rw-r--r-- | grapher/Models/Calculations/AccelChartData.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/grapher/Models/Calculations/AccelChartData.cs b/grapher/Models/Calculations/AccelChartData.cs index 5225e08..54685a2 100644 --- a/grapher/Models/Calculations/AccelChartData.cs +++ b/grapher/Models/Calculations/AccelChartData.cs @@ -23,6 +23,14 @@ namespace grapher.Models.Calculations public SortedDictionary<double, double> AccelPoints { get; } + public double MaxAccel { get; set; } + + public double MinAccel { get; set; } + + public double MaxGain { get; set; } + + public double MinGain { get; set; } + public SortedDictionary<double, double> VelocityPoints { get; } public SortedDictionary<double, double> GainPoints { get; } |