├── .gitignore ├── copyright.txt ├── data ├── antiprisms.json ├── archimedean.json ├── johnson.json ├── platonic.json └── prisms.json ├── index.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/copyright.txt -------------------------------------------------------------------------------- /data/antiprisms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/data/antiprisms.json -------------------------------------------------------------------------------- /data/archimedean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/data/archimedean.json -------------------------------------------------------------------------------- /data/johnson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/data/johnson.json -------------------------------------------------------------------------------- /data/platonic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/data/platonic.json -------------------------------------------------------------------------------- /data/prisms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/data/prisms.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finnp/polyhedra/HEAD/readme.md --------------------------------------------------------------------------------