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

pub trait VertexCell {
    fn vertex_to_cell<I>(&self, i: I, k: usize) -> Option<CellIndex>
    where
        I: Copy + Into<VertexIndex>
;
fn vertex_cell<I>(&self, i: I, k: usize) -> Option<VertexCellIndex>
    where
        I: Copy + Into<VertexIndex>
;
fn num_vertex_cells(&self) -> usize;
fn num_cells_at_vertex<I>(&self, i: I) -> usize
    where
        I: Copy + Into<VertexIndex>
; }

Required methods

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

Index of the destination element.

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

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

fn num_vertex_cells(&self) -> usize

Topology quantifier. Number of connectors in total.

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

Topology quantifier. Number of connectors at a particular element.

Loading content...

Implementors

impl<T: Real> VertexCell for TetMeshExt<T>[src]

Loading content...