We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
另请参阅poly2tri,它看起来不错: https://github.com/greenm01/poly2tri
See also poly2tri, it looks nice: https://github.com/greenm01/poly2tri
我使用了 Gnu Triangulated Surface 库 进行 2D Delaunay 三角测量,效果很好。调用起来有点奇怪,因为它使用 OOP-in-C GLib 风格,但它很容易 结束。
I've used the Gnu Triangulated Surface library for 2D Delaunay triangulation and it worked well. Slightly strange to call because it uses that OOP-in-C GLib style, but it can easily be wrapped up.
您可能应该详细说明您的目标,以便可以提供更相关的答案,但让我首先提到 Triangle,一个 2D Delaunay 生成工具,用 C 语言编写,既可以作为独立程序使用,也可以从您自己的代码中调用。
然后,关于CGAL,这里有一个典型的小例子,如果你还考虑的话:
You should probably detail your goals a bit, so that more relevant answers can be provided, but let me first mention Triangle, a 2D Delaunay generation tool, which is written in C, and can be used both as a standalone program, or called from your own code.
Then, about CGAL, here is a typical small example, in case you still consider it: