Pymeshlab

Latest version: v2023.12.post2

Safety actively analyzes 685670 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 3

0.1.2

-----

**08/2020**

* Numpy becomes a dependency
* Support to filter_select plugin
* Possibility to load and save mlp and other project files supported by MeshLab
* Mesh data can be exported to numpy arrays

0.1.1

-----

**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``

0.1

---

**07/2020**

First PyMeshLab release.
First interfaces to the following classes:

* Mesh
* MeshSet

Possibility to load and a save a mesh using I/O meshlab plugins:

.. code-block:: python

import pymeshlab as ml
ms = ml.MeshSet()
ms.load_mesh('airplane.obj')
ms.load_mesh('bone.ply')

mesh = md.current_mesh() bone.ply
print(mesh.vertex_number())
md.save_mesh('bone.obj')

Page 3 of 3

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.