如何使用 CGAL 简化 3d 网格的特定区域
how can I simplify a specific region of 3d mesh using CGAL
我正在使用 CGAL Surface Mesh Simplification to simplify 3d mesh from .off file was read as Linear_cell_complex_for_combinatorial_map and undo the edges collapsing (simplification) using undo_edge_collapse_surface_mesh。
如何在网格上的特定选定区域内进行简化和撤消过程。
有什么建议吗?
您可以通过在参数中传递边 --> bool 映射来约束某些边,使其不会被删除。
有关用法示例,请参阅 documentation of the edge_collapse() function and this CGAL example 中的命名参数 is_constrained_edge_map。在您的情况下,您只需遍历区域的边缘并对其进行约束。
我正在使用 CGAL Surface Mesh Simplification to simplify 3d mesh from .off file was read as Linear_cell_complex_for_combinatorial_map and undo the edges collapsing (simplification) using undo_edge_collapse_surface_mesh。
如何在网格上的特定选定区域内进行简化和撤消过程。
有什么建议吗?
您可以通过在参数中传递边 --> bool 映射来约束某些边,使其不会被删除。
有关用法示例,请参阅 documentation of the edge_collapse() function and this CGAL example 中的命名参数 is_constrained_edge_map。在您的情况下,您只需遍历区域的边缘并对其进行约束。