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

Method is_manifold

python/pymesh/Mesh.py:147–150  ·  view source on GitHub ↗

Return true iff this mesh is both vertex-manifold and edge-manifold.

(self)

Source from the content-addressed store, hash-verified

145 return self.__mesh.get_voxel_adjacent_voxels(Vi).ravel()
146
147 def is_manifold(self):
148 """ Return true iff this mesh is both vertex-manifold and edge-manifold.
149 """
150 return self.is_vertex_manifold() and self.is_edge_manifold()
151
152 def is_vertex_manifold(self):
153 """ Return true iff this mesh is vertex-manifold.

Calls 2

is_vertex_manifoldMethod · 0.95
is_edge_manifoldMethod · 0.95