mirror of
https://github.com/RawAccelOfficial/rawaccel.git
synced 2025-05-15 22:04:45 +02:00
21 lines
438 B
C#
21 lines
438 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, Profile settings);
|
|
|
|
void Clear();
|
|
|
|
AccelChartData X { get; }
|
|
|
|
AccelChartData Y { get; }
|
|
}
|
|
}
|