author | PAMPHILE Jonathan <pamphile@efrei.fr> |
Fri, 06 Nov 2009 17:50:40 +0100 | |
changeset 189 | b37888f59cf2 |
parent 176 | 0896f36b9d57 |
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 |
} |