Blake.NUI.WPF.Gestures.HoldGestureEngine.TrackTouchMove C# (CSharp) Method

TrackTouchMove() public method

public TrackTouchMove ( Point position, System.DateTime timestamp ) : void
position Point
timestamp System.DateTime
return void
    public void TrackTouchMove(Point position, DateTime timestamp)
    {
      if (IsCompleted || IsAborted)
        return;

      Vector delta = position - StartPoint;
      if (delta.Length > _maxMovement)
      {
        AbortGesture();
      }
    }