├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── chicago-author-date.csl ├── img ├── 20151108215824.png ├── 20151109201926.png ├── 20151109203028.png ├── 20151109203325.png ├── 20151109205310.png ├── 20151109213837.png ├── 20151124201337.png ├── 20151213214501.png ├── 20151213214559.png ├── 20151215171754.png ├── 20151215213347.png ├── 20151215214451.png ├── 20151215214538.png ├── 20151215215108.png ├── 20151215215519.png ├── 20151215220220.png ├── 20151215221746.png ├── 20151215221955.png ├── 20151215222027.png ├── 20151215231757.png ├── 20151221012636.png ├── KITLogo_RGB.pdf ├── Perlin.png ├── newdelhi.png ├── road-patterns.pdf ├── sanfran.png ├── teaser.png └── tensor.png ├── implementation ├── .eslintrc.js ├── .gitignore ├── Makefile ├── demo.html ├── index.md ├── package.json ├── src │ ├── Quadtree.ts │ ├── config.ts │ ├── index.ts │ ├── mapgen.ts │ ├── math.ts │ └── render.ts ├── tsconfig.json ├── typings │ └── perlin.d.ts ├── webpack.config.ts └── yarn.lock ├── paper-template.tex ├── paper.md ├── paper.pdf ├── presentation.md ├── prosem.bib ├── screenshot.sh ├── thesisclass.cls └── vortrag-gliederung.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/README.md -------------------------------------------------------------------------------- /chicago-author-date.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/chicago-author-date.csl -------------------------------------------------------------------------------- /img/20151108215824.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151108215824.png -------------------------------------------------------------------------------- /img/20151109201926.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151109201926.png -------------------------------------------------------------------------------- /img/20151109203028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151109203028.png -------------------------------------------------------------------------------- /img/20151109203325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151109203325.png -------------------------------------------------------------------------------- /img/20151109205310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151109205310.png -------------------------------------------------------------------------------- /img/20151109213837.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151109213837.png -------------------------------------------------------------------------------- /img/20151124201337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151124201337.png -------------------------------------------------------------------------------- /img/20151213214501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151213214501.png -------------------------------------------------------------------------------- /img/20151213214559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151213214559.png -------------------------------------------------------------------------------- /img/20151215171754.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215171754.png -------------------------------------------------------------------------------- /img/20151215213347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215213347.png -------------------------------------------------------------------------------- /img/20151215214451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215214451.png -------------------------------------------------------------------------------- /img/20151215214538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215214538.png -------------------------------------------------------------------------------- /img/20151215215108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215215108.png -------------------------------------------------------------------------------- /img/20151215215519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215215519.png -------------------------------------------------------------------------------- /img/20151215220220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215220220.png -------------------------------------------------------------------------------- /img/20151215221746.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215221746.png -------------------------------------------------------------------------------- /img/20151215221955.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215221955.png -------------------------------------------------------------------------------- /img/20151215222027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215222027.png -------------------------------------------------------------------------------- /img/20151215231757.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151215231757.png -------------------------------------------------------------------------------- /img/20151221012636.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/20151221012636.png -------------------------------------------------------------------------------- /img/KITLogo_RGB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/KITLogo_RGB.pdf -------------------------------------------------------------------------------- /img/Perlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/Perlin.png -------------------------------------------------------------------------------- /img/newdelhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/newdelhi.png -------------------------------------------------------------------------------- /img/road-patterns.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/road-patterns.pdf -------------------------------------------------------------------------------- /img/sanfran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/sanfran.png -------------------------------------------------------------------------------- /img/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/teaser.png -------------------------------------------------------------------------------- /img/tensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/img/tensor.png -------------------------------------------------------------------------------- /implementation/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/.eslintrc.js -------------------------------------------------------------------------------- /implementation/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | tsc/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /implementation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/Makefile -------------------------------------------------------------------------------- /implementation/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/demo.html -------------------------------------------------------------------------------- /implementation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/index.md -------------------------------------------------------------------------------- /implementation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/package.json -------------------------------------------------------------------------------- /implementation/src/Quadtree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/src/Quadtree.ts -------------------------------------------------------------------------------- /implementation/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/src/config.ts -------------------------------------------------------------------------------- /implementation/src/index.ts: -------------------------------------------------------------------------------- 1 | import "./render"; 2 | -------------------------------------------------------------------------------- /implementation/src/mapgen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/src/mapgen.ts -------------------------------------------------------------------------------- /implementation/src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/src/math.ts -------------------------------------------------------------------------------- /implementation/src/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/src/render.ts -------------------------------------------------------------------------------- /implementation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/tsconfig.json -------------------------------------------------------------------------------- /implementation/typings/perlin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/typings/perlin.d.ts -------------------------------------------------------------------------------- /implementation/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/webpack.config.ts -------------------------------------------------------------------------------- /implementation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/implementation/yarn.lock -------------------------------------------------------------------------------- /paper-template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/paper-template.tex -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/paper.md -------------------------------------------------------------------------------- /paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/paper.pdf -------------------------------------------------------------------------------- /presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/presentation.md -------------------------------------------------------------------------------- /prosem.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/prosem.bib -------------------------------------------------------------------------------- /screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/screenshot.sh -------------------------------------------------------------------------------- /thesisclass.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/thesisclass.cls -------------------------------------------------------------------------------- /vortrag-gliederung.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phiresky/procedural-cities/HEAD/vortrag-gliederung.md --------------------------------------------------------------------------------