├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── main.cpp ├── model.stl ├── path.h.in └── vox1024.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | path.h 2 | 3 | *build* 4 | 5 | *.vox 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylefeb/VoxSurf/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylefeb/VoxSurf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylefeb/VoxSurf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylefeb/VoxSurf/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylefeb/VoxSurf/HEAD/main.cpp -------------------------------------------------------------------------------- /model.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylefeb/VoxSurf/HEAD/model.stl -------------------------------------------------------------------------------- /path.h.in: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define SRC_PATH "@CMAKE_SOURCE_DIR@" 4 | -------------------------------------------------------------------------------- /vox1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylefeb/VoxSurf/HEAD/vox1024.jpg --------------------------------------------------------------------------------