mirror of
https://github.com/RawAccelOfficial/rawaccel.git
synced 2025-05-17 06:43:52 +02:00
21 lines
445 B
C#
21 lines
445 B
C#
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, DriverSettings settings);
|
|
|
|
void Clear();
|
|
|
|
AccelChartData X { get; }
|
|
|
|
AccelChartData Y { get; }
|
|
}
|
|
}
|