Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neargye/swipetype
Implementing same algorithm "swype keyboard" for .NET and Unity
https://github.com/neargye/swipetype
algorithm csharp keyboard swipetype swype-keyboard unity unity3d
Last synced: 3 months ago
JSON representation
Implementing same algorithm "swype keyboard" for .NET and Unity
- Host: GitHub
- URL: https://github.com/neargye/swipetype
- Owner: Neargye
- License: apache-2.0
- Created: 2018-03-14T15:34:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-01-23T12:37:35.000Z (about 1 year ago)
- Last Synced: 2024-05-09T07:35:48.467Z (9 months ago)
- Topics: algorithm, csharp, keyboard, swipetype, swype-keyboard, unity, unity3d
- Language: C#
- Homepage:
- Size: 342 KB
- Stars: 26
- Watchers: 6
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SwipeType - Implementing same algorithm "swype keyboard" for .NET and Unity
## Example
```cs
var swype = new MatchSwipeType(File.ReadAllLines("wordlist.txt")); // File with a list of words
string testCases = "heqerqllo";foreach (var x in swype.GetSuggestion(testCases, 2))
{
Console.WriteLine(x);
//Output:
//hello
//hero
}
```## Licensed under the [Apache-2.0 License](LICENSE)