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

Method is_edge_manifold

python/pymesh/Mesh.py:160–167  ·  view source on GitHub ↗

Return true iff this mesh is edge-manifold. A mesh is edge-manifold if there are exactly 2 incident faces for all non-border edges. Border edges, by definition, only have 1 incident face.

(self)

Source from the content-addressed store, hash-verified

158 return self._extra_info.is_vertex_manifold()
159
160 def is_edge_manifold(self):
161 """ Return true iff this mesh is edge-manifold.
162
163 A mesh is edge-manifold if there are exactly 2 incident faces for all
164 non-border edges. Border edges, by definition, only have 1 incident
165 face.
166 """
167 return self._extra_info.is_edge_manifold()
168
169 def is_closed(self):
170 """ Return true iff this mesh is closed.

Callers 4

is_manifoldMethod · 0.95
is_edge_manifoldFunction · 0.45
print_extended_infoFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected