-
Notifications
You must be signed in to change notification settings - Fork 56
/
SmoothingWithWindow.xaml.cs
53 lines (46 loc) · 1.94 KB
/
SmoothingWithWindow.xaml.cs
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
using System.Reactive;
using System.Reactive.Linq;
using System.Windows;
using System.Windows.Input;
namespace RxQueryOperators
{
/// <summary>
/// Interaction logic for SmoothingWithWindow.xaml
/// </summary>
public partial class SmoothingWithWindow : Window
{
public SmoothingWithWindow()
{
InitializeComponent();
IObservable<EventPattern<MouseEventArgs>> downs =
Observable.FromEventPattern<MouseEventArgs>(
background, nameof(background.MouseDown));
IObservable<EventPattern<MouseEventArgs>> ups =
Observable.FromEventPattern<MouseEventArgs>(
background, nameof(background.MouseUp));
IObservable<EventPattern<MouseEventArgs>> allMoves =
Observable.FromEventPattern<MouseEventArgs>(
background, nameof(background.MouseMove));
IObservable<EventPattern<MouseEventArgs>> dragMoves =
from down in downs
join move in allMoves
on ups equals allMoves
select move;
IObservable<EventPattern<MouseEventArgs>> allDragPositionEvents =
Observable.Merge(downs, ups, dragMoves);
IObservable<Point> dragPositions =
from move in allDragPositionEvents
select move.EventArgs.GetPosition(background);
IObservable<Point> smoothed =
from points in dragPositions.Window(5, 2)
from totals in points.Aggregate(
new { X = 0.0, Y = 0.0, Count = 0 },
(acc, point) => new
{ X = acc.X + point.X, Y = acc.Y + point.Y, Count = acc.Count + 1 })
where totals.Count > 0
select new Point(totals.X / totals.Count, totals.Y / totals.Count);
smoothed.Subscribe(point => { line.Points.Add(point); });
}
}
}