Metadata-Version: 2.1
Name: entente
Version: 0.7.1
Summary: Work with polygonal meshes which have vertex-wise correspondence
Home-page: https://github.com/metabolize/entente
Author: Metabolize
Author-email: github@paulmelnikow.com
License: UNKNOWN
Project-URL: Issue Tracker, https://github.com/metabolize/entente/issues
Project-URL: Documentation, https://entente.readthedocs.io/en/stable/
Description: entente
        =======
        
        [![version](https://img.shields.io/pypi/v/entente.svg?style=flat-square)][pypi]
        [![python version](https://img.shields.io/pypi/pyversions/entente.svg?style=flat-square)][pypi]
        [![license](https://img.shields.io/pypi/l/entente.svg?style=flat-square)][pypi]
        [![coverage](https://img.shields.io/coveralls/lace/entente.svg?style=flat-square)][coverage]
        [![build](https://img.shields.io/circleci/project/github/lace/entente/master.svg?style=flat-square)][build]
        [![docs build](https://img.shields.io/readthedocs/entente.svg?style=flat-square)][docs build]
        [![code style](https://img.shields.io/badge/code%20style-black-black.svg?style=flat-square)][black]
        
        Library for working with [lace][]-style polygonal meshes which have vertex-wise
        correspondence.
        
        [pypi]: https://pypi.org/project/entente/
        [coverage]: https://coveralls.io/github/lace/entente
        [black]: https://black.readthedocs.io/en/stable/
        [lace]: https://github.com/metabolize/lace
        [build]: https://circleci.com/gh/lace/entente/tree/master
        [docs build]: https://entente.readthedocs.io/en/latest/
        
        
        Features
        --------
        
        - Create a composite.
        - Transfer landmarks from the surface of one mesh to the surface of another.
        - Shuffle vertices.
        - Restore correspondence of vertices.
        - Spatial search, lightly wrapping [trimesh][].
        - Complete documentation: https://entente.readthedocs.io/en/stable/
        
        
        
        Installation
        ------------
        
        Requires Python 2.7.
        
        ```sh
        pip install entente
        ```
        
        [trimesh][], [rtree][], and [libspatialindex][] are required for landmark
        transfer and AABB tree. They are optional.
        
        ```sh
        brew install spatialindex
        pip install rtree trimesh
        ```
        
        [trimesh]: https://trimsh.org/
        [rtree]: http://toblerity.org/rtree/
        [libspatialindex]: https://libspatialindex.org/
        
        
        Usage
        -----
        
        ```sh
        python -m entente.cli source.obj source.pp target1.obj target2.obj ...
        ```
        
        
        Development
        -----------
        
        ### Updating the Docker build for CircleCI
        
        1. Make sure Docker is installed and running.
        2. Build and push the images:
        
        ```sh
        ./dev.py docker-build 0.2.0  # Use the next available minor release.
        ./dev.py docker-push 0.2.0
        ```
        
        3. Update the `image:` references in .circleci/config.yml`.
        
        
        Contribute
        ----------
        
        - Issue Tracker: https://github.com/metabolize/entente/issues
        - Source Code: https://github.com/metabolize/entente
        
        Pull requests welcome!
        
        
        Support
        -------
        
        If you are having issues, please let me know.
        
        
        License
        -------
        
        The project is licensed under the MIT license.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Artistic Software
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
Classifier: Topic :: Scientific/Engineering :: Visualization
Description-Content-Type: text/markdown
