summaryrefslogtreecommitdiff
path: root/grapher/Models/Calculations/Data/IAccelData.cs
blob: 2ae67162d0787717bcbefcbbc207c31aa8e99fed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace grapher.Models.Calculations.Data
{
    public interface IAccelData
    {
        void CalculateDots(double x, double y, double timeInMs);

        void CreateGraphData(ManagedAccel accel, Profile settings);

        void Clear();

        AccelChartData X { get; }

        AccelChartData Y { get; }
    }
}