├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── src ├── input.h ├── map.cpp ├── map.h ├── math.h ├── precompiled.cpp ├── precompiled.h ├── render.cpp ├── render.h ├── voxel_space.cpp ├── voxel_space.h ├── win32.cpp └── win32.h ├── test └── test_render.cpp └── utils └── convert_heightmap.py /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | build/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/README.md -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/input.h -------------------------------------------------------------------------------- /src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/map.cpp -------------------------------------------------------------------------------- /src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/map.h -------------------------------------------------------------------------------- /src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/math.h -------------------------------------------------------------------------------- /src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" 2 | -------------------------------------------------------------------------------- /src/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/precompiled.h -------------------------------------------------------------------------------- /src/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/render.cpp -------------------------------------------------------------------------------- /src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/render.h -------------------------------------------------------------------------------- /src/voxel_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/voxel_space.cpp -------------------------------------------------------------------------------- /src/voxel_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/voxel_space.h -------------------------------------------------------------------------------- /src/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/win32.cpp -------------------------------------------------------------------------------- /src/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/src/win32.h -------------------------------------------------------------------------------- /test/test_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/test/test_render.cpp -------------------------------------------------------------------------------- /utils/convert_heightmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsalgado/voxel_space/HEAD/utils/convert_heightmap.py --------------------------------------------------------------------------------