src/FingersDance.GestureControl/SurfaceGestureVector.cs
author cavaliet
Thu, 05 Nov 2009 13:13:52 +0100
changeset 187 b266af50744c
parent 176 0896f36b9d57
child 189 b37888f59cf2
permissions -rw-r--r--
Change file and event names for code to be clearer and more coherent with the project and cuttings organisation

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; }
    }
}