[][src]Struct static_math::matrix4x4::M44

pub struct M44<T>(_);

A static Matrix of 4x4 shape

Implementations

impl<T> M44<T>[src]

pub fn new(data_input: [[T; 4]; 4]) -> M44<T>[src]

pub fn rows(&self) -> usize[src]

pub fn cols(&self) -> usize[src]

impl<T: Num + Copy> M44<T>[src]

pub fn identity() -> M44<T>[src]

contruct identity matrix

pub fn zeros() -> M44<T>[src]

construct the matrix with all zeros

pub fn as_vec(&self) -> [T; 16][src]

transform the matrix to a flatten vector

pub fn new_from_vecs(cols: V4<V4<T>>) -> Self[src]

pub fn get_diagonal(&self) -> V4<T>[src]

get the diagonal of the matrix

pub fn get_submatrix(&self, selected: (usize, usize)) -> M33<T>[src]

pub fn get_rows(self) -> V4<V4<T>>[src]

pub fn get_cols(self) -> V4<V4<T>>[src]

pub fn get_upper_triagular(&self) -> [T; 6][src]

pub fn get_lower_triangular(&self) -> [T; 6][src]

Trait Implementations

impl<T: Num + Copy> Add<M44<T>> for M44<T>[src]

type Output = Self

The resulting type after applying the + operator.

impl<T: Clone> Clone for M44<T>[src]

impl<T: Copy> Copy for M44<T>[src]

impl<T: Debug> Debug for M44<T>[src]

impl<T> Deref for M44<T>[src]

type Target = [[T; 4]; 4]

The resulting type after dereferencing.

impl<T> DerefMut for M44<T>[src]

impl<T: Num + Display> Display for M44<T>[src]

impl<T> From<[[T; 4]; 4]> for M44<T>[src]

impl<T> Index<(usize, usize)> for M44<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<(usize, usize)> for M44<T>[src]

impl<T: Float + Sum> LinearAlgebra<T> for M44<T>[src]

fn qr(&self) -> Option<(Self, Self)>[src]

Calculate de QR factorization of the M44 via gram-schmidt orthogonalization process

impl<T: Num + Copy> Mul<M44<T>> for M44<T>[src]

type Output = Self

The resulting type after applying the * operator.

impl<T: Num + Copy> Mul<M44<T>> for V4<T>[src]

type Output = V4<T>

The resulting type after applying the * operator.

impl<T: Num + Copy> Mul<T> for M44<T>[src]

type Output = M44<T>

The resulting type after applying the * operator.

impl<T: Num + Copy + Sum> Mul<V4<T>> for M44<T>[src]

type Output = V4<T>

The resulting type after applying the * operator.

impl<T: Num + Copy> One for M44<T>[src]

fn one() -> M44<T>[src]

Create an identity matrix

impl<T: PartialEq> PartialEq<M44<T>> for M44<T>[src]

impl<T> StructuralPartialEq for M44<T>[src]

impl<T: Num + Copy> Sub<M44<T>> for M44<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Num + Copy> Zero for M44<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for M44<T> where
    T: RefUnwindSafe

impl<T> Send for M44<T> where
    T: Send

impl<T> Sync for M44<T> where
    T: Sync

impl<T> Unpin for M44<T> where
    T: Unpin

impl<T> UnwindSafe for M44<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.