在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):pmp-library/pmp-library开源软件地址(OpenSource Url):https://github.com/pmp-library/pmp-library开源编程语言(OpenSource Language):C++ 95.0%开源软件介绍(OpenSource Introduction):IntroductionThe Polygon Mesh Processing Library is a modern C++ open-source library for processing and visualizing polygon surface meshes. Its main features are:
Getting StartedClone the repository: git clone --recursive https://github.com/pmp-library/pmp-library.git Configure and build: cd pmp-library && mkdir build && cd build && cmake .. && make Run the mesh processing app: ./mpview ../external/pmp-data/off/bunny.off Build your own tool: #include <pmp/SurfaceMesh.h>
int main(void)
{
pmp::SurfaceMesh mesh;
mesh.read("input.obj");
// .. do awesome things with your mesh
mesh.write("output.obj");
} ContributingContributions to the pmp-library are welcome. See the contributing section of the user guide. AcknowledgmentIf you are using the pmp-library for research projects, please acknowledge its use by referencing @misc{pmp-library,
title = {The Polygon Mesh Processing Library},
author = {Daniel Sieger and Mario Botsch},
note = {http://www.pmp-library.org},
year = {2019},
} LicenseThe pmp-library is provided under a simple and flexible MIT-style license allowing for both open-source and commercial usage. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论