├── .gitignore ├── AUTHORS.txt ├── LICENSE.txt ├── README.md ├── __init__.py ├── assets └── colormap_assest.json ├── blender2tet.py ├── blender2voxel.py ├── dependencies.py ├── mesh2blender.py ├── nii2tet.py ├── nii2voxel.py ├── obj2surf.py ├── pkg.py ├── runmcx.py ├── runmmc.py ├── ui.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/colormap_assest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/assets/colormap_assest.json -------------------------------------------------------------------------------- /blender2tet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/blender2tet.py -------------------------------------------------------------------------------- /blender2voxel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/blender2voxel.py -------------------------------------------------------------------------------- /dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/dependencies.py -------------------------------------------------------------------------------- /mesh2blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/mesh2blender.py -------------------------------------------------------------------------------- /nii2tet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/nii2tet.py -------------------------------------------------------------------------------- /nii2voxel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/nii2voxel.py -------------------------------------------------------------------------------- /obj2surf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/obj2surf.py -------------------------------------------------------------------------------- /pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/pkg.py -------------------------------------------------------------------------------- /runmcx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/runmcx.py -------------------------------------------------------------------------------- /runmmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/runmmc.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/ui.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuroJSON/BlenderPhotonics/HEAD/utils.py --------------------------------------------------------------------------------