├── .gitignore ├── LICENSE ├── README.md ├── img └── bunny-ao.png ├── index.js ├── package.json └── test ├── ao-bunny.json ├── gen-bunny.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/README.md -------------------------------------------------------------------------------- /img/bunny-ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/img/bunny-ao.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/package.json -------------------------------------------------------------------------------- /test/ao-bunny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/test/ao-bunny.json -------------------------------------------------------------------------------- /test/gen-bunny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/test/gen-bunny.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/vertex-ao/HEAD/test/test.js --------------------------------------------------------------------------------