diff options
| author | Jacob Palecki <[email protected]> | 2021-01-20 00:42:24 -0800 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-01-20 00:42:24 -0800 |
| commit | 77b4c7876918cac82494ec8fc15a22fdab5cf714 (patch) | |
| tree | 66b2c7d86cecf0846c3b5cdaa69c6991858ed931 /grapher/Models/Mouse/PointData.cs | |
| parent | Remove debug statement (diff) | |
| parent | show custom dialog on bad input (#63) (diff) | |
| download | rawaccel-77b4c7876918cac82494ec8fc15a22fdab5cf714.tar.xz rawaccel-77b4c7876918cac82494ec8fc15a22fdab5cf714.zip | |
merge with master builds
Diffstat (limited to 'grapher/Models/Mouse/PointData.cs')
| -rw-r--r-- | grapher/Models/Mouse/PointData.cs | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/grapher/Models/Mouse/PointData.cs b/grapher/Models/Mouse/PointData.cs index e3f44ea..87bfc62 100644 --- a/grapher/Models/Mouse/PointData.cs +++ b/grapher/Models/Mouse/PointData.cs @@ -8,7 +8,6 @@ namespace grapher.Models.Mouse public PointData() { - Lock = new Object(); X = new double[] { 0.01 }; Y = new double[] { 0.01 }; } @@ -17,18 +16,13 @@ namespace grapher.Models.Mouse #region Properties - public Object Lock { get; } - private double[] X { get; set; } private double[] Y { get; set; } public void Set(double x, double y) { - lock(Lock) - { - X[0] = x; - Y[0] = y; - } + X[0] = x; + Y[0] = y; } #endregion Properties @@ -37,11 +31,8 @@ namespace grapher.Models.Mouse public void Get(out double[] x, out double[] y) { - lock(Lock) - { x = X; y = Y; - } } #endregion Methods |