using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace grapher.Models.Calculations { public class AccelChartData { public AccelChartData() { AccelPoints = new SortedDictionary(); VelocityPoints = new SortedDictionary(); GainPoints = new SortedDictionary(); } public SortedDictionary AccelPoints { get; } public SortedDictionary VelocityPoints { get; } public SortedDictionary GainPoints { get; } public void Clear() { AccelPoints.Clear(); VelocityPoints.Clear(); GainPoints.Clear(); } } }