mirror of
https://github.com/RawAccelOfficial/rawaccel.git
synced 2025-05-15 13:59:05 +02:00
28 lines
538 B
C#
28 lines
538 B
C#
using grapher.Models.Mouse;
|
|
|
|
namespace grapher.Models.Charts
|
|
{
|
|
public class EstimatedPoints
|
|
{
|
|
#region Constructors
|
|
|
|
public EstimatedPoints()
|
|
{
|
|
Sensitivity = new PointData();
|
|
Velocity = new PointData();
|
|
Gain = new PointData();
|
|
}
|
|
|
|
#endregion Constructors
|
|
|
|
#region Properties
|
|
|
|
public PointData Sensitivity { get; }
|
|
|
|
public PointData Velocity { get; }
|
|
|
|
public PointData Gain { get; }
|
|
|
|
#endregion Properties
|
|
}
|
|
}
|