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)
| 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. |
no outgoing calls
no test coverage detected