Return true iff this mesh is both vertex-manifold and edge-manifold.
(self)
| 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. |