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

pub trait CellVertex {
    fn cell_to_vertex<I>(&self, i: I, k: usize) -> Option<VertexIndex>
    where
        I: Copy + Into<CellIndex>
;
fn cell_vertex<I>(&self, i: I, k: usize) -> Option<CellVertexIndex>
    where
        I: Copy + Into<CellIndex>
;
fn num_cell_vertices(&self) -> usize;
fn num_vertices_at_cell<I>(&self, i: I) -> usize
    where
        I: Copy + Into<CellIndex>
; fn reverse_topo(&self) -> (Vec<usize>, Vec<usize>)
    where
        Self: NumCells + NumVertices
, { ... } }

Required methods

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

Index of the destination element.

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

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

fn num_cell_vertices(&self) -> usize

Topology quantifier. Number of connectors in total.

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

Topology quantifier. Number of connectors at a particular element.

Loading content...

Provided methods

fn reverse_topo(&self) -> (Vec<usize>, Vec<usize>) where
    Self: NumCells + NumVertices

Generate the reverse topology structure.

Loading content...

Implementors

impl<T: Real> CellVertex for TetMesh<T>[src]

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

Loading content...