Beispiel #1
0
 void MatchStrokes()
 {
     foreach (List <Vector2f> inputStroke in Input)
     {
         InputMatches.Add(StrokeMatcher.Match(inputStroke).ToList());
     }
 }
        public static IEnumerable <StrokeMatch> Match(IEnumerable <Vector2f> input)
        {
            StrokeMatcher matcher = new StrokeMatcher(input);

            return(matcher.Match());
        }
 public static IEnumerable<StrokeMatch> Match(IEnumerable<Vector2f> input)
 {
     StrokeMatcher matcher = new StrokeMatcher(input);
     return matcher.Match();
 }