{"id":13532929,"url":"https://github.com/pmp-library/pmp-library","last_synced_at":"2025-05-14T14:07:32.931Z","repository":{"id":39850907,"uuid":"105374301","full_name":"pmp-library/pmp-library","owner":"pmp-library","description":"The Polygon Mesh Processing Library","archived":false,"fork":false,"pushed_at":"2025-05-05T17:30:08.000Z","size":23213,"stargazers_count":1382,"open_issues_count":18,"forks_count":186,"subscribers_count":35,"default_branch":"main","last_synced_at":"2025-05-05T18:43:16.534Z","etag":null,"topics":["c-plus-plus","curvature","geodesic-distances","geometry-processing","hole-filling-algorithm","mesh-processing","mesh-simplification","parameterization","polygon-mesh","remeshing","smoothing","subdivision","surface-mesh","triangle-mesh","triangulation"],"latest_commit_sha":null,"homepage":"https://www.pmp-library.org","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pmp-library.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/contributing.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"docs/code_of_conduct.md","threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-09-30T14:11:00.000Z","updated_at":"2025-05-05T17:21:40.000Z","dependencies_parsed_at":"2023-11-11T13:42:58.863Z","dependency_job_id":"783d93ea-7e30-436b-8891-e65bbd8651ad","html_url":"https://github.com/pmp-library/pmp-library","commit_stats":{"total_commits":1746,"total_committers":18,"mean_commits":97.0,"dds":"0.18671248568155785","last_synced_commit":"0bb5112f64c2e5a02e0be630dd180bc10575d698"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmp-library%2Fpmp-library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmp-library%2Fpmp-library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmp-library%2Fpmp-library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmp-library%2Fpmp-library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pmp-library","download_url":"https://codeload.github.com/pmp-library/pmp-library/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254159194,"owners_count":22024558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c-plus-plus","curvature","geodesic-distances","geometry-processing","hole-filling-algorithm","mesh-processing","mesh-simplification","parameterization","polygon-mesh","remeshing","smoothing","subdivision","surface-mesh","triangle-mesh","triangulation"],"created_at":"2024-08-01T07:01:15.072Z","updated_at":"2025-05-14T14:07:32.914Z","avatar_url":"https://github.com/pmp-library.png","language":"C++","funding_links":[],"categories":["Libraries","Maths"],"sub_categories":["C++"],"readme":"# Introduction\n\n[![build](https://github.com/pmp-library/pmp-library/workflows/build/badge.svg)](https://github.com/pmp-library/pmp-library/actions?query=workflow%3Abuild)\n[![Coverage Status](https://coveralls.io/repos/github/pmp-library/pmp-library/badge.svg?branch=master)](https://coveralls.io/github/pmp-library/pmp-library?branch=main)\n[![Latest Release](https://img.shields.io/github/v/release/pmp-library/pmp-library?sort=semver)](https://github.com/pmp-library/pmp-library/releases/latest)\n[![DOI](https://zenodo.org/badge/105374301.svg)](https://zenodo.org/doi/10.5281/zenodo.10866531)\n\nThe Polygon Mesh Processing Library is a modern C++ open-source library for processing and visualizing polygon surface meshes. Its main features are:\n\n- An efficient and easy-to-use mesh data structure\n- Standard algorithms such as decimation, remeshing, subdivision, or smoothing\n- Ready-to-use visualization tools\n- Seamless cross-compilation to JavaScript ([demo](https://www.pmp-library.org/demos/mpview.html))\n\n## Get Started\n\nClone the repository:\n\n```sh\ngit clone https://github.com/pmp-library/pmp-library.git\n```\n\nConfigure and build:\n\n```sh\ncd pmp-library \u0026\u0026 mkdir build \u0026\u0026 cd build \u0026\u0026 cmake .. \u0026\u0026 make\n```\n\nRun the mesh processing app:\n\n```sh\n./mpview ../data/off/bunny.off\n```\n\nBuild your own tool:\n\n```cpp\n#include \u003cpmp/surface_mesh.h\u003e\n#include \u003cpmp/io/io.h\u003e\n\nint main()\n{\n    pmp::SurfaceMesh mesh;\n    pmp::read(mesh,\"input.obj\");\n    // .. do awesome things with your mesh\n    pmp::write(mesh,\"output.obj\");\n}\n```\n\n## Read the Docs\n\nThe [user guide](https://www.pmp-library.org/guide.html) contains all you need to get started using PMP, including a [tutorial](https://www.pmp-library.org/tutorial.html) covering mesh processing basics.\n\n## Contribute\n\nContributions to PMP are welcome! There are many ways you can help: Report any [issues](https://github.com/pmp-library/pmp-library/issues) you find, help to improve the documentation, join our [discussions](https://github.com/pmp-library/pmp-library/discussions) forum, or [contribute](https://www.pmp-library.org/contributing.html) new code.\n\n## Acknowledge\n\nIf you are using PMP for research projects, please acknowledge its use by referencing\n\n```tex\n@software{pmp23,\n  author = {Sieger, Daniel and Botsch, Mario},\n  title = {{The Polygon Mesh Processing Library}},\n  year = {2023},\n  month = aug,\n  version = {3.0.0},\n  doi = {10.5281/zenodo.10866532},\n  url = {https://github.com/pmp-library/pmp-library}\n}\n```\n\nWe acknowledge that PMP evolved from our previous work on [Surface_mesh](http://dx.doi.org/10.1007/978-3-642-24734-7_29) and [OpenMesh](https://pub.uni-bielefeld.de/record/1961694).\n\n## License\n\nPMP is provided under a simple and flexible MIT-style [license](https://github.com/pmp-library/pmp-library/blob/master/LICENSE.txt) allowing for both open-source and commercial usage.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpmp-library%2Fpmp-library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpmp-library%2Fpmp-library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpmp-library%2Fpmp-library/lists"}