├── CMakeLists.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── demo.cpp ├── include └── sdf │ ├── internal │ ├── RTree.h │ ├── nanoflann.hpp │ └── sdf_util.hpp │ └── sdf.hpp ├── pybind.cpp ├── readme-img ├── human.gif ├── smpl.png ├── teapot.gif └── voxel.png ├── sample-obj ├── boxframe.obj ├── cubegrid.obj ├── teapot.obj └── torus.obj ├── setup.cfg ├── setup.py ├── setup_cmake.py ├── src ├── cmake │ └── sdfConfig.cmake ├── renderer.cpp ├── sdf.cpp └── util.cpp └── tools └── pybench.py /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/README.md -------------------------------------------------------------------------------- /demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/demo.cpp -------------------------------------------------------------------------------- /include/sdf/internal/RTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/include/sdf/internal/RTree.h -------------------------------------------------------------------------------- /include/sdf/internal/nanoflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/include/sdf/internal/nanoflann.hpp -------------------------------------------------------------------------------- /include/sdf/internal/sdf_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/include/sdf/internal/sdf_util.hpp -------------------------------------------------------------------------------- /include/sdf/sdf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/include/sdf/sdf.hpp -------------------------------------------------------------------------------- /pybind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/pybind.cpp -------------------------------------------------------------------------------- /readme-img/human.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/readme-img/human.gif -------------------------------------------------------------------------------- /readme-img/smpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/readme-img/smpl.png -------------------------------------------------------------------------------- /readme-img/teapot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/readme-img/teapot.gif -------------------------------------------------------------------------------- /readme-img/voxel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/readme-img/voxel.png -------------------------------------------------------------------------------- /sample-obj/boxframe.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/sample-obj/boxframe.obj -------------------------------------------------------------------------------- /sample-obj/cubegrid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/sample-obj/cubegrid.obj -------------------------------------------------------------------------------- /sample-obj/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/sample-obj/teapot.obj -------------------------------------------------------------------------------- /sample-obj/torus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/sample-obj/torus.obj -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/setup.py -------------------------------------------------------------------------------- /setup_cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/setup_cmake.py -------------------------------------------------------------------------------- /src/cmake/sdfConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/src/cmake/sdfConfig.cmake -------------------------------------------------------------------------------- /src/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/src/renderer.cpp -------------------------------------------------------------------------------- /src/sdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/src/sdf.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/src/util.cpp -------------------------------------------------------------------------------- /tools/pybench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyu/sdf/HEAD/tools/pybench.py --------------------------------------------------------------------------------