Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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');
});
```