├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── auto_load.py ├── interior.jpeg ├── mesh_delaunay_triangulation.py ├── mesh_from_uv.py ├── mesh_select_interior.py ├── mesh_select_overlapping.py ├── overlapping.jpeg └── select_all_by_trait.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/__init__.py -------------------------------------------------------------------------------- /auto_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/auto_load.py -------------------------------------------------------------------------------- /interior.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/interior.jpeg -------------------------------------------------------------------------------- /mesh_delaunay_triangulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/mesh_delaunay_triangulation.py -------------------------------------------------------------------------------- /mesh_from_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/mesh_from_uv.py -------------------------------------------------------------------------------- /mesh_select_interior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/mesh_select_interior.py -------------------------------------------------------------------------------- /mesh_select_overlapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/mesh_select_overlapping.py -------------------------------------------------------------------------------- /overlapping.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/overlapping.jpeg -------------------------------------------------------------------------------- /select_all_by_trait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpopovici/mesh-utils/HEAD/select_all_by_trait.py --------------------------------------------------------------------------------