using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace grapher.Models.Calculations { public class AccelData { public AccelData() { OrderedAccelPoints = new SortedDictionary(); OrderedVelocityPoints = new SortedDictionary(); OrderedGainPoints = new SortedDictionary(); } public SortedDictionary OrderedAccelPoints { get; } public SortedDictionary OrderedVelocityPoints { get; } public SortedDictionary OrderedGainPoints { get; } public void Clear() { OrderedAccelPoints.Clear(); OrderedVelocityPoints.Clear(); OrderedGainPoints.Clear(); } } }