├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── demo.js ├── package.json └── src └── old └── vec3-rotate.js /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/glo/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/glo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/glo/HEAD/README.md -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/glo/HEAD/demo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/glo/HEAD/package.json -------------------------------------------------------------------------------- /src/old/vec3-rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/glo/HEAD/src/old/vec3-rotate.js --------------------------------------------------------------------------------