blob: f7ba3ce042b932d8a5c7d72649502b8234bd4b58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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
}
}
|