├── .project ├── .pydevproject ├── LICENSE ├── README.md └── meshskeletonization ├── __init__.py ├── helpers ├── OriginalMeshContraction.py ├── __init__.py ├── connect_by_inherit_neigh.py ├── farthest_sampling_by_sphere.py ├── line_extract.py ├── meshcontraction.py └── utilities.py ├── operators.py ├── panels.py └── propertiesregister.py /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/.pydevproject -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/README.md -------------------------------------------------------------------------------- /meshskeletonization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/__init__.py -------------------------------------------------------------------------------- /meshskeletonization/helpers/OriginalMeshContraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/helpers/OriginalMeshContraction.py -------------------------------------------------------------------------------- /meshskeletonization/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meshskeletonization/helpers/connect_by_inherit_neigh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/helpers/connect_by_inherit_neigh.py -------------------------------------------------------------------------------- /meshskeletonization/helpers/farthest_sampling_by_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/helpers/farthest_sampling_by_sphere.py -------------------------------------------------------------------------------- /meshskeletonization/helpers/line_extract.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /meshskeletonization/helpers/meshcontraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/helpers/meshcontraction.py -------------------------------------------------------------------------------- /meshskeletonization/helpers/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/helpers/utilities.py -------------------------------------------------------------------------------- /meshskeletonization/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/operators.py -------------------------------------------------------------------------------- /meshskeletonization/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/panels.py -------------------------------------------------------------------------------- /meshskeletonization/propertiesregister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aalavandhaann/Py_BL_MeshSkeletonization/HEAD/meshskeletonization/propertiesregister.py --------------------------------------------------------------------------------