├── .gitignore ├── README.md ├── example_cube.py ├── imgui.ini ├── qef.py ├── srtool.py ├── taichi_tools.py └── test.ply /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppledoreM/taichi-surface_reconstruction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Surface Reconstruction Using Taichi 2 | 3 | ## To be continued 4 | -------------------------------------------------------------------------------- /example_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppledoreM/taichi-surface_reconstruction/HEAD/example_cube.py -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=400,400 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /qef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppledoreM/taichi-surface_reconstruction/HEAD/qef.py -------------------------------------------------------------------------------- /srtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppledoreM/taichi-surface_reconstruction/HEAD/srtool.py -------------------------------------------------------------------------------- /taichi_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppledoreM/taichi-surface_reconstruction/HEAD/taichi_tools.py -------------------------------------------------------------------------------- /test.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppledoreM/taichi-surface_reconstruction/HEAD/test.ply --------------------------------------------------------------------------------