Returns whether the associated mesh is a 2-manifold (no non-manifold edges and no non-manifold vertices)
(&self)
| 738 | |
| 739 | /// Returns whether the associated mesh is a 2-manifold (no non-manifold edges and no non-manifold vertices) |
| 740 | pub fn is_manifold(&self) -> bool { |
| 741 | self.non_manifold_edges.is_empty() && self.non_manifold_vertices.is_empty() |
| 742 | } |
| 743 | } |
| 744 | |
| 745 | impl<R: Real> TriMesh3d<R> { |