对不起,这可能太简单了,但是在PyMesh中,当我使用教程中最简单的示例代码定义如下[1:https://i.stack.imgur.com/MyuGC.png]这样的几何文件时:
vertices = nodes # The vertex of polygon
tri = pymesh.triangle()
tri.points = vertices
tri.max_area = 0.05
tri.split_boundary = False
tri.verbosity = 0
tri.run(); # Execute triangle
mesh = tri.mesh; # output triangulation生成的网格如下,其中有一个倒角,但我想要精确的几何。[2:https://i.stack.imgur.com/kPNh1.png]请帮帮忙!提前谢谢你
发布于 2022-04-27 19:13:53
对不起,朋友,根据这个链接,https://github.com/PyMesh/PyMesh/issues/95,我应该定义段。所以它解决了!
https://stackoverflow.com/questions/72033693
复制相似问题