Annotation from a recognised gesture corrected.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GestureControl
{
/// <summary>
/// Describe a point in the grid
/// </summary>
public class SurfaceGesturePoint
{
public double X { get; set; }
public double Y { get; set; }
}
}