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

Method is_edge_manifold

tools/MeshUtils/MeshChecker.cpp:73–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73bool MeshChecker::is_edge_manifold() const {
74 for (auto adj : m_edge_face_adjacency) {
75 if (adj.second.size() > 2) {
76 return false;
77 }
78 }
79 return true;
80}
81
82bool MeshChecker::is_oriented() const {
83 // For each edge (s, d), check to see if the number of faces containing

Callers 2

TEST_FFunction · 0.45

Calls 1

sizeMethod · 0.45

Tested by 2

TEST_FFunction · 0.36