MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/splashsurf / non_manifold_edges

Method non_manifold_edges

splashsurf_lib/src/mesh.rs:716–721  ·  view source on GitHub ↗

Iterator over all non-manifold edges

(&self)

Source from the content-addressed store, hash-verified

714
715 /// Iterator over all non-manifold edges
716 pub fn non_manifold_edges(&self) -> impl Iterator<Item = [usize; 2]> + '_ {
717 self.edge_counts
718 .values()
719 .filter(|(_, count)| *count > 2)
720 .map(move |(edge_idx, _)| self.edge_info[*edge_idx].0)
721 }
722}
723
724pub struct MeshManifoldInformation {

Callers 1

Calls 1

valuesMethod · 0.80

Tested by

no test coverage detected