[][src]Trait gut::mesh::attrib::CellAttrib

pub trait CellAttrib {
    fn impl_attrib_size(&self) -> usize;
fn impl_attrib_dict(&self) -> &AttribDict<CellIndex>;
fn impl_attrib_dict_mut(&mut self) -> &mut AttribDict<CellIndex>; }

Topology specific attribute implementation trait. This trait exists to allow one to access mesh attributes using the AttribIndex trait, and should never be used explicitly.

Required methods

fn impl_attrib_size(&self) -> usize

Mesh implementation of the attribute size getter.

fn impl_attrib_dict(&self) -> &AttribDict<CellIndex>

Mesh implementation of the attribute dictionary getter.

fn impl_attrib_dict_mut(&mut self) -> &mut AttribDict<CellIndex>

Mesh implementation of the attribute dictionary mutable getter.

Loading content...

Implementors

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

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

Loading content...