/// <summary> /// Calculates the matching score between two a sequence of IStrokes /// and a Radical /// </summary> /// <param name="strokeSequence">The stroke sequence.</param> /// <param name="radicalmatcher">An instance of a radicalmatcher class.</param> /// <returns>double: matching value</returns> public double MatchingScore(List<IStroke> strokeSequence, IRadicalMatcher radicalmatcher) { return radicalmatcher.Match(this, strokeSequence); }
/// <summary> /// Calculates the matching score between two a sequence of IStrokes /// and a Radical /// </summary> /// <param name="strokeSequence">The stroke sequence.</param> /// <param name="radicalmatcher">An instance of a radicalmatcher class.</param> /// <returns>double: matching value</returns> public double MatchingScore(List <IStroke> strokeSequence, IRadicalMatcher radicalmatcher) { return(radicalmatcher.Match(this, strokeSequence)); }