src/FingersDance.GestureControl/SurfaceGestureVector.cs
author cavaliet
Tue, 24 Nov 2009 12:57:18 +0100
changeset 226 c0661ecf943e
parent 189 b37888f59cf2
permissions -rw-r--r--
debug visual bug for "too far" annotation and simplify gesture handler in player.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace GestureControl
{
    /// <summary>
    /// Describe a vector to help the recognize pass
    /// </summary>
    public class SurfaceGestureVector
    {
        public SurfaceGestureVectorDirection Direction { get; set; }
        public Double Lenght { get; set; }
        public SurfaceGesturePoint Origin { get; set; }
    }
}