add a method to find connected components

This commit is contained in:
2022-01-05 15:54:46 +01:00
parent 6cb0dbc21e
commit 810ddaee03
2 changed files with 48 additions and 0 deletions

View File

@ -101,4 +101,8 @@ standard_deviation(const ForwardIt first,
}
std::vector<std::vector<VertexHandle>> find_connected_components(
MyMesh &mesh);
#endif