Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beeglebug/symbol
Symbol - A Javascript gesture recognition library
https://github.com/beeglebug/symbol
Last synced: 8 days ago
JSON representation
Symbol - A Javascript gesture recognition library
- Host: GitHub
- URL: https://github.com/beeglebug/symbol
- Owner: beeglebug
- License: mit
- Created: 2013-09-17T08:00:41.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-07T17:19:59.000Z (about 10 years ago)
- Last Synced: 2024-04-18T06:45:48.300Z (7 months ago)
- Language: JavaScript
- Size: 250 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Symbol
======
A simple Javascript gesture recognition library.```javascript
// define a symbol
Symbol.add('N', [ [[177,92],[177,2]], [[182,1],[246,95]], [[247,87],[247,1]] ] );// when the symbol is drawn, trigger a callback
Symbol.on('N', function(b) {
console.log('an N was drawn');
});
```