We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a3365a commit 967c725Copy full SHA for 967c725
1 file changed
TabletDriverFilters/TabletFilterSmoothing.cs
@@ -13,7 +13,8 @@ public class TabletFilterSmoothing : IFilter
13
private DateTime? _lastFilterTime;
14
private Point _lastPos;
15
private float _timerInterval;
16
- public float _threshold = 0.63f;
+ private const float _threshold = 0.63f;
17
+
18
public Point Filter(Point point)
19
{
20
var timeDelta = DateTime.Now - _lastFilterTime;
0 commit comments