-----
**07/2020**
Possibility to load/save meshes, and apply filters.
.. code-block:: python
import pymeshlab
ms = pymeshlab.MeshSet()
ms.load_mesh('airplane.obj')
ms.apply_filter('convex_hull')
ms.save_mesh('convex_hull.ply')
You can list all the available filters:
.. code-block:: python
ms.print_filter_list()
and print all the parameters needed by a filter:
.. code-block:: python
ms.print_filter_parameter_list('surface_reconstruction_screened_poisson')
and apply filters with parameters:
.. code-block:: python
ms.apply_filter('noisy_isosurface', resolution=128)
Right now, 4 types of parameters are supported: ``bool``, ``int``, ``float``, ``str``