├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── LICENSE ├── README.md ├── dist ├── aframe-leap-hands.js ├── aframe-leap-hands.js.map ├── aframe-leap-hands.module.js ├── aframe-leap-hands.module.js.map ├── aframe-leap-hands.umd.js └── aframe-leap-hands.umd.js.map ├── examples ├── grabbing │ └── index.html ├── index.js └── leap-hands │ └── index.html ├── lib ├── circular-array.js ├── leap.hand-hold.js ├── leap.hand-mesh.js ├── leap.js └── leap.transform.js ├── package.json └── src ├── helpers ├── hand-body.js └── intersector.js ├── index.js ├── leap-hand.js └── leap-system.js /.gitattributes: -------------------------------------------------------------------------------- 1 | text=true 2 | * eol=lf 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | **/bundle.js 4 | npm-debug.log 5 | build 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | assets 2 | build 3 | examples 4 | scripts 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/README.md -------------------------------------------------------------------------------- /dist/aframe-leap-hands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/dist/aframe-leap-hands.js -------------------------------------------------------------------------------- /dist/aframe-leap-hands.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/dist/aframe-leap-hands.js.map -------------------------------------------------------------------------------- /dist/aframe-leap-hands.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/dist/aframe-leap-hands.module.js -------------------------------------------------------------------------------- /dist/aframe-leap-hands.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/dist/aframe-leap-hands.module.js.map -------------------------------------------------------------------------------- /dist/aframe-leap-hands.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/dist/aframe-leap-hands.umd.js -------------------------------------------------------------------------------- /dist/aframe-leap-hands.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/dist/aframe-leap-hands.umd.js.map -------------------------------------------------------------------------------- /examples/grabbing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/examples/grabbing/index.html -------------------------------------------------------------------------------- /examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/examples/index.js -------------------------------------------------------------------------------- /examples/leap-hands/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/examples/leap-hands/index.html -------------------------------------------------------------------------------- /lib/circular-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/lib/circular-array.js -------------------------------------------------------------------------------- /lib/leap.hand-hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/lib/leap.hand-hold.js -------------------------------------------------------------------------------- /lib/leap.hand-mesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/lib/leap.hand-mesh.js -------------------------------------------------------------------------------- /lib/leap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/lib/leap.js -------------------------------------------------------------------------------- /lib/leap.transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/lib/leap.transform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/package.json -------------------------------------------------------------------------------- /src/helpers/hand-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/src/helpers/hand-body.js -------------------------------------------------------------------------------- /src/helpers/intersector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/src/helpers/intersector.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/src/index.js -------------------------------------------------------------------------------- /src/leap-hand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/src/leap-hand.js -------------------------------------------------------------------------------- /src/leap-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openleap/aframe-leap-hands/HEAD/src/leap-system.js --------------------------------------------------------------------------------