MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / get_num_connected_surface_components

Method get_num_connected_surface_components

tools/MeshUtils/MeshChecker.cpp:169–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169size_t MeshChecker::get_num_connected_surface_components() const {
170 MeshSeparator separator(m_faces);
171 separator.set_connectivity_type(MeshSeparator::FACE);
172 return separator.separate();
173}
174
175size_t MeshChecker::get_num_connected_volume_components() const {
176 MeshSeparator separator(m_voxels);

Callers 2

TEST_FFunction · 0.80

Calls 2

set_connectivity_typeMethod · 0.80
separateMethod · 0.80

Tested by 1

TEST_FFunction · 0.64