Skip to main content

Mesh, Tools and Geometry Processing

Project description

Mouette is a small python library for handling point clouds, polylines, surface and volume meshes. It also contains various geometry processing algorithm, like shortest-paths, old-school parametrization or frame field computations.

Mouette (French for seagull) stands for Maillages, OUtils Et Traitement auTomatique de la géométriE (French for "Meshes, Tools and Geometry Processing").

Installation

Using pip: pip install mouette

Overview

Mouette allows to easily load data from various file format and access geometrical primitives

Import and Export made simple

import mouette as M

mesh = M.mesh.load("path/to/my/mesh/mesh.obj")
print(mesh.vertices[0])
print(mesh.faces[2])
M.mesh.save(mesh,"path/to/export/mesh.obj")

Define quantities over meshes and work with it

It is possible to define any quantity on mesh elements

my_v_attribute = mesh.vertices.create_attribute("my_attribute", float) # an attribute storing one floating-point number per vertex
my_v_attribute[3] = 4.

my_f_attribute = mesh.faces.create_attribute("my_attribute", 2, int) # an attribute storing two integers per face
m_f_attribute[2] = [1,3]

Attributes can store booleans, integers, floating-point numbers, complex numbers and strings, using the provided python types bool, int, float, complex and str.

Call Geometry Processing Algorithms

ff = M.processing.framefield.FrameField2DVertices(mesh)
ff.run()
ffmesh = ff.export_as_mesh()
M.mesh.save(ffmesh, "framefield.mesh")

And much more

See full documentation at https://gcoiffier.github.io/mouette/ (still a Work in Progress)

Run tests

python -m pytest tests/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mouette-1.1.1.tar.gz (288.1 kB view details)

Uploaded Source

Built Distribution

mouette-1.1.1-py3-none-any.whl (132.8 kB view details)

Uploaded Python 3

File details

Details for the file mouette-1.1.1.tar.gz.

File metadata

  • Download URL: mouette-1.1.1.tar.gz
  • Upload date:
  • Size: 288.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for mouette-1.1.1.tar.gz
Algorithm Hash digest
SHA256 f78fc266ad9b4130e87d564d510ae071be2fdb621157b00aea70ec9445bf6986
MD5 15aab6bbae69df6a7219ce6ed132510c
BLAKE2b-256 2c42ac20545c45c12708ef4f8c35fd81d3315e15922e3738e7ba7adecab489ec

See more details on using hashes here.

File details

Details for the file mouette-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: mouette-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 132.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for mouette-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dc3cfa3f186223adbadc40ad303cf194937bc061ec8fefe056ee7ea4c4b806f4
MD5 21d65148cea44f823736e034e2f109c6
BLAKE2b-256 f3884d5db134eeaf3e6dc4d86408f8c2fa7cdce5f62a93cba0d8c6bd70d76789

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page