├── .clang-format ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── images └── 2017-10-26.png ├── project ├── test2d.png ├── the-worldinator.sln ├── the-worldinator.vcxproj ├── the-worldinator.vcxproj.filters └── the-worldinator.vcxproj.user └── src ├── external ├── jc_voronoi │ ├── LICENSE │ ├── README.md │ └── jc_voronoi.h ├── open-simplex-noise │ ├── LICENSE │ ├── README.md │ ├── open-simplex-noise.c │ └── open-simplex-noise.h ├── pcg-c-basic │ ├── LICENSE.txt │ ├── README.md │ ├── pcg_basic.c │ └── pcg_basic.h └── stb │ ├── stb_image.h │ ├── stb_image_resize.h │ └── stb_image_write.h └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/README.md -------------------------------------------------------------------------------- /images/2017-10-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/images/2017-10-26.png -------------------------------------------------------------------------------- /project/test2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/project/test2d.png -------------------------------------------------------------------------------- /project/the-worldinator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/project/the-worldinator.sln -------------------------------------------------------------------------------- /project/the-worldinator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/project/the-worldinator.vcxproj -------------------------------------------------------------------------------- /project/the-worldinator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/project/the-worldinator.vcxproj.filters -------------------------------------------------------------------------------- /project/the-worldinator.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/project/the-worldinator.vcxproj.user -------------------------------------------------------------------------------- /src/external/jc_voronoi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/jc_voronoi/LICENSE -------------------------------------------------------------------------------- /src/external/jc_voronoi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/jc_voronoi/README.md -------------------------------------------------------------------------------- /src/external/jc_voronoi/jc_voronoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/jc_voronoi/jc_voronoi.h -------------------------------------------------------------------------------- /src/external/open-simplex-noise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/open-simplex-noise/LICENSE -------------------------------------------------------------------------------- /src/external/open-simplex-noise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/open-simplex-noise/README.md -------------------------------------------------------------------------------- /src/external/open-simplex-noise/open-simplex-noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/open-simplex-noise/open-simplex-noise.c -------------------------------------------------------------------------------- /src/external/open-simplex-noise/open-simplex-noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/open-simplex-noise/open-simplex-noise.h -------------------------------------------------------------------------------- /src/external/pcg-c-basic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/pcg-c-basic/LICENSE.txt -------------------------------------------------------------------------------- /src/external/pcg-c-basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/pcg-c-basic/README.md -------------------------------------------------------------------------------- /src/external/pcg-c-basic/pcg_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/pcg-c-basic/pcg_basic.c -------------------------------------------------------------------------------- /src/external/pcg-c-basic/pcg_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/pcg-c-basic/pcg_basic.h -------------------------------------------------------------------------------- /src/external/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/stb/stb_image.h -------------------------------------------------------------------------------- /src/external/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/stb/stb_image_resize.h -------------------------------------------------------------------------------- /src/external/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/external/stb/stb_image_write.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Srekel/the-worldinator/HEAD/src/main.c --------------------------------------------------------------------------------