Metadata-Version: 2.2
Name: pymeshfix
Version: 0.18.0
Summary: Repair triangular meshes using MeshFix
Author-Email: PyVista Developers <info@pyvista.org>
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Project-URL: Bug Reports, https://github.com/pyvista/pymeshfix/issues
Project-URL: Documentation, https://pymeshfix.pyvista.org/
Project-URL: Homepage, https://github.com/pyvista/pymeshfix
Project-URL: Source Code, https://github.com/pyvista/pymeshfix
Requires-Python: <3.15,>=3.10
Requires-Dist: numpy
Provides-Extra: docs
Requires-Dist: Sphinx; extra == "docs"
Requires-Dist: pydata-sphinx-theme; extra == "docs"
Requires-Dist: pyvista; extra == "docs"
Requires-Dist: sphinx_gallery; extra == "docs"
Requires-Dist: sphinx-notfound-page>=0.3.0; extra == "docs"
Requires-Dist: sphinx-copybutton; extra == "docs"
Provides-Extra: extras
Requires-Dist: pyvista; extra == "extras"
Provides-Extra: tests
Requires-Dist: pyvista; extra == "tests"
Requires-Dist: pytest; extra == "tests"
Requires-Dist: pytest-cov; extra == "tests"
Description-Content-Type: text/x-rst

###########
 PyMeshFix
###########

.. |pypi| image:: https://img.shields.io/pypi/v/pymeshfix.svg?logo=python&logoColor=white
   :target: https://pypi.org/project/pymeshfix/

Python/Cython wrapper of Marco Attene's wonderful, award-winning
`MeshFix <https://github.com/MarcoAttene/MeshFix-V2.1>`__ software. This
module brings the speed of C++ with the portability and ease of
installation of Python.

This software takes as input a polygon mesh and produces a copy of the
input where all the occurrences of a specific set of "defects" are
corrected. MeshFix has been designed to correct typical flaws present in
raw digitized mesh models, thus it might fail or produce coarse results
if run on other sorts of input meshes (e.g. tessellated CAD models).

The input is assumed to represent a single closed solid object, thus the
output will be a single watertight triangle mesh bounding a polyhedron.
All the singularities, self-intersections and degenerate elements are
removed from the input, while regions of the surface without defects are
left unmodified.

Uses MeshFix v2.1 with several quality of life fixes.

**************
 Installation
**************

From `PyPI <https://pypi.python.org/pypi/pymeshfix>`__

.. code:: bash

   pip install pymeshfix

From source at `GitHub <https://github.com/pyvista/pymeshfix>`__

.. code:: bash

   git clone https://github.com/pyvista/pymeshfix
   cd pymeshfix
   pip install .

**************
 Dependencies
**************

Requires ``numpy`` and optionally ``pyvista``.

If you'd like to install PyVista, you can install it with:

.. code::

   pip install pymeshfix[extras]

Install PyVista to allow you to plot directly from ``pymeshfix``.

**********
 Examples
**********

Test installation with the following from Python:

.. code:: python

   from pymeshfix import examples

   # Test of pymeshfix without VTK module
   examples.native()

   # Performs same mesh repair while leveraging VTK's plotting/mesh loading
   examples.with_vtk()

**************
 Easy Example
**************

This example uses the Cython wrapper directly. No bells or whistles
here:

.. code:: python

   import pymeshfix

   # Read mesh from infile and output cleaned mesh to outfile
   pymeshfix.clean_from_file(infile, outfile)

This example assumes the user has vertex and faces arrays in Python.

.. code:: python

   import pymeshfix

   # Generate vertex and face arrays of cleaned mesh
   # where v and f are numpy arrays
   vclean, fclean = pymeshfix.clean_from_arrays(v, f)

****************************************
 Complete Examples with and without VTK
****************************************

One of the main reasons to bring MeshFix to Python is to allow the
library to communicate to other Python libraries without having to use
files. Therefore, this example assumes that you have a mesh within
memory and wish to repair it using MeshFix.

.. code:: python

   import pymeshfix

   # Create object from vertex and face arrays
   meshfix = pymeshfix.MeshFix(v, f)

   # Plot input
   meshfix.plot()

   # Repair input mesh
   meshfix.repair()

   # Access the repaired mesh with vtk
   mesh = meshfix.mesh

   # Or, access the resulting arrays directly from the object
   meshfix.points # numpy np.float64 array
   meshfix.faces # numpy np.int32 array

   # View the repaired mesh (requires pyvista)
   meshfix.plot()

   # Save the mesh
   meshfix.write('out.ply')

Alternatively, the user could use the Cython wrapper of MeshFix directly
if vtk is unavailable or they wish to have more control over the
cleaning algorithm.

.. code:: python

   import pymeshfix

   # Create TMesh object
   tin = pymeshfix.PyTMesh()

   tin.LoadFile(infile)
   # tin.load_array(v, f) # or read arrays from memory

   # Attempt to join nearby components
   # tin.join_closest_components()

   # Fill holes
   tin.fill_small_boundaries()
   print(f'There are {tin.boundaries()} boundaries')

   # Clean (removes self intersections)
   tin.clean(max_iters=10, inner_loops=3)

   # Check mesh for holes again
   print(f'There are {tin.boundaries()} boundaries')

   # Clean again if necessary...

   # Output mesh
   tin.save_file(outfile)

    # or return numpy arrays
   vclean, fclean = tin.return_arrays()

*******************************
 Algorithm and Citation Policy
*******************************

To better understand how the algorithm works, please refer to the
following paper:

   M. Attene. A lightweight approach to repairing digitized polygon
   meshes. The Visual Computer, 2010. (c) Springer. DOI:
   10.1007/s00371-010-0416-3

This software is based on ideas published therein. If you use MeshFix
for research purposes you should cite the above paper in your published
results. MeshFix cannot be used for commercial purposes without a proper
licensing contract.

***********
 Copyright
***********

MeshFix is Copyright(C) 2010: IMATI-GE / CNR

All rights reserved.

This program is dual-licensed as follows:

(1) You may use MeshFix as free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.

In this case the program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License (http://www.gnu.org/licenses/gpl.txt) for more details.

(2) You may use MeshFix as part of a commercial software. In this case a
proper agreement must be reached with the Authors and with IMATI-GE/CNR
based on a proper licensing contract.
