[][src]Trait gut::mesh::topology::VertexEdge

pub trait VertexEdge {
    fn vertex_to_edge<I>(&self, i: I, k: usize) -> Option<EdgeIndex>
    where
        I: Copy + Into<VertexIndex>
;
fn vertex_edge<I>(&self, i: I, k: usize) -> Option<VertexEdgeIndex>
    where
        I: Copy + Into<VertexIndex>
;
fn num_vertex_edges(&self) -> usize;
fn num_edges_at_vertex<I>(&self, i: I) -> usize
    where
        I: Copy + Into<VertexIndex>
; }

Required methods

fn vertex_to_edge<I>(&self, i: I, k: usize) -> Option<EdgeIndex> where
    I: Copy + Into<VertexIndex>, 

Index of the destination element.

fn vertex_edge<I>(&self, i: I, k: usize) -> Option<VertexEdgeIndex> where
    I: Copy + Into<VertexIndex>, 

Toplogy index: where the data lives in an attribute array.

fn num_vertex_edges(&self) -> usize

Topology quantifier. Number of connectors in total.

fn num_edges_at_vertex<I>(&self, i: I) -> usize where
    I: Copy + Into<VertexIndex>, 

Topology quantifier. Number of connectors at a particular element.

Loading content...

Implementors

Loading content...