diff -r 1d4b6d6474d5 -r 0896f36b9d57 src/FingersDance.GestureControl/SurfaceGestureVector.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.GestureControl/SurfaceGestureVector.cs Tue Oct 27 01:59:56 2009 +0100 @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace GestureControl +{ + /// + /// Describe a vector to help the recognize pass + /// + public class SurfaceGestureVector + { + public SurfaceGestureVectorDirection Direction { get; set; } + public Double Lenght { get; set; } + } +}