author | riley |
Tue, 24 Nov 2009 22:47:25 +0100 | |
changeset 228 | 6e70a11abd3f |
parent 189 | b37888f59cf2 |
permissions | -rw-r--r-- |
176 | 1 |
using System; |
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
||
6 |
namespace GestureControl |
|
7 |
{ |
|
8 |
/// <summary> |
|
9 |
/// Describe a vector to help the recognize pass |
|
10 |
/// </summary> |
|
11 |
public class SurfaceGestureVector |
|
12 |
{ |
|
13 |
public SurfaceGestureVectorDirection Direction { get; set; } |
|
14 |
public Double Lenght { get; set; } |
|
189 | 15 |
public SurfaceGesturePoint Origin { get; set; } |
176 | 16 |
} |
17 |
} |