Skip to main content

Mat3ArrayOfArray

Trait Mat3ArrayOfArray 

Source
pub trait Mat3ArrayOfArray<Real>
where Self: Sized,
{ // Required methods fn det_inv(&self) -> (Real, Self); fn inverse(&self) -> Self; fn matmul(&self, b: &Self) -> Self; }

Required Methods§

Source

fn det_inv(&self) -> (Real, Self)

Source

fn inverse(&self) -> Self

Source

fn matmul(&self, b: &Self) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<Real> Mat3ArrayOfArray<Real> for [[Real; 3]; 3]
where Real: Float,

Source§

fn det_inv(&self) -> (Real, Self)

Source§

fn inverse(&self) -> Self

Source§

fn matmul(&self, b: &Self) -> Self

Implementors§