在 CGAL 中查找围绕顶点的面?
Finding faces around a vertex in CGAL?
不确定问题是否已得到解答。我正在使用 CGAL 处理 tethedral 网格(medit 网格)文件。我需要找出这个网格中顶点周围的面。所以它将是一个顶点面迭代器。有谁知道CGAL有没有这种迭代器?
您可以使用函数finite_incident_cells
and test whether the cells are in the complex using is_in_complex
。
不确定问题是否已得到解答。我正在使用 CGAL 处理 tethedral 网格(medit 网格)文件。我需要找出这个网格中顶点周围的面。所以它将是一个顶点面迭代器。有谁知道CGAL有没有这种迭代器?
您可以使用函数finite_incident_cells
and test whether the cells are in the complex using is_in_complex
。