summaryrefslogtreecommitdiff
path: root/grapher/AccelerationSettings.cs
blob: dd026e8cfdb893ec1b2c177e3e02a8beeb4014fe (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
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace grapher
{
    public class AccelerationSettings
    {
        public double SensitivityX { get; }

        public double SensitivityY { get; }

        public double Rotation { get; }

        public double Offset { get; }

        public double WeightX { get; }

        public double WeightY { get; }

        public double CapX { get; }

        public double CapY { get; }

        public int AccelerationType { get; }

        public double Acceleration { get; }

        public double LimitOrExponent { get; }

        public double Midpoint { get; }
    }
}