├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── demo ├── index.js └── three-primitive.js ├── index.html ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/three-primitive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/demo/three-primitive.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/three-buffer-vertex-data/HEAD/package.json --------------------------------------------------------------------------------