Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 CGAL(C++)中获取/迭代 2D delaunay 图中的所有边?
例如,在 MATLAB 中,这只是边(dt)。
您只需要使用成员函数 All_edges_iterator all_edges_begin() All_edges_iterator all_edges_end() 来获取边缘上的迭代器范围。
它记录在 Triangulation_2 页面here
请注意,您将获得与无限顶点相关的边以及有限边。