Returns whether the associated mesh is closed (has no boundary edges)
(&self)
| 733 | impl MeshManifoldInformation { |
| 734 | /// Returns whether the associated mesh is closed (has no boundary edges) |
| 735 | pub fn is_closed(&self) -> bool { |
| 736 | self.boundary_edges.is_empty() |
| 737 | } |
| 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 { |