├── .gitmodules ├── README.md ├── SimpleTectonics.cpp ├── imgui.ini ├── makefile ├── screenshots ├── banner0.png ├── banner1.png ├── plates0.png ├── plates1.png ├── terrain0.png └── terrain1.png ├── source ├── cluster.h ├── poisson.h ├── scene.h ├── shader │ ├── cascading.fs │ ├── default.fs │ ├── default.vs │ ├── depth.fs │ ├── depth.vs │ ├── diffusion.fs │ ├── flat.fs │ ├── flat.vs │ ├── subduction.fs │ ├── voronoi.fs │ └── voronoi.vs └── tectonics.h └── tectonics /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/README.md -------------------------------------------------------------------------------- /SimpleTectonics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/SimpleTectonics.cpp -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/imgui.ini -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/makefile -------------------------------------------------------------------------------- /screenshots/banner0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/screenshots/banner0.png -------------------------------------------------------------------------------- /screenshots/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/screenshots/banner1.png -------------------------------------------------------------------------------- /screenshots/plates0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/screenshots/plates0.png -------------------------------------------------------------------------------- /screenshots/plates1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/screenshots/plates1.png -------------------------------------------------------------------------------- /screenshots/terrain0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/screenshots/terrain0.png -------------------------------------------------------------------------------- /screenshots/terrain1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/screenshots/terrain1.png -------------------------------------------------------------------------------- /source/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/cluster.h -------------------------------------------------------------------------------- /source/poisson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/poisson.h -------------------------------------------------------------------------------- /source/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/scene.h -------------------------------------------------------------------------------- /source/shader/cascading.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/cascading.fs -------------------------------------------------------------------------------- /source/shader/default.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/default.fs -------------------------------------------------------------------------------- /source/shader/default.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/default.vs -------------------------------------------------------------------------------- /source/shader/depth.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/depth.fs -------------------------------------------------------------------------------- /source/shader/depth.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/depth.vs -------------------------------------------------------------------------------- /source/shader/diffusion.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/diffusion.fs -------------------------------------------------------------------------------- /source/shader/flat.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/flat.fs -------------------------------------------------------------------------------- /source/shader/flat.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/flat.vs -------------------------------------------------------------------------------- /source/shader/subduction.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/subduction.fs -------------------------------------------------------------------------------- /source/shader/voronoi.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/voronoi.fs -------------------------------------------------------------------------------- /source/shader/voronoi.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/shader/voronoi.vs -------------------------------------------------------------------------------- /source/tectonics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/source/tectonics.h -------------------------------------------------------------------------------- /tectonics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigert/SimpleTectonics/HEAD/tectonics --------------------------------------------------------------------------------