[][src]Trait gut::ops::ShapeMatrix

pub trait ShapeMatrix<M> {
    fn shape_matrix(self) -> M;
}

Shape matrices are useful for finite element analysis.

Required methods

fn shape_matrix(self) -> M

Return a shape matrix of the given type M.

Loading content...

Implementors

impl<'a, T: BaseNum> ShapeMatrix<[[T; 3]; 2]> for &'a Triangle<T>[src]

Returns a column major 3x2 matrix.

impl<'a, T: BaseNum> ShapeMatrix<[[T; 3]; 3]> for &'a Tetrahedron<T>[src]

Column-major array matrix.

impl<T: BaseNum> ShapeMatrix<[[T; 3]; 2]> for Triangle<T>[src]

Returns a column major 3x2 matrix.

impl<T: BaseNum> ShapeMatrix<[[T; 3]; 3]> for Tetrahedron<T>[src]

Loading content...