[−][src]Struct static_math::matrix3x3::M33
A static matrix of 3x3 shape
Implementations
impl<T> M33<T>
[src]
pub fn new(data_input: [[T; 3]; 3]) -> M33<T>
[src]
pub fn rows(&self) -> usize
[src]
pub fn cols(&self) -> usize
[src]
impl<T: Num + Copy> M33<T>
[src]
pub fn identity() -> M33<T>
[src]
contruct identity matrix
pub fn zeros() -> M33<T>
[src]
construct the matrix with all zeros
pub fn as_vec(&self) -> [T; 9]
[src]
transform the matrix to a flatten vector
pub fn new_from_vecs(cols: V3<V3<T>>) -> Self
[src]
construct the matrix from columns-vectors
pub fn get_diagonal(&self) -> V3<T>
[src]
get the diagonal of the matrix
pub fn get_upper_triagular(&self) -> [T; 3]
[src]
pub fn get_lower_triangular(&self) -> [T; 3]
[src]
impl<T: Num + Copy> M33<T>
[src]
pub fn get_rows(self) -> V3<V3<T>>
[src]
get the rows of the matrix as a vectors
pub fn get_cols(self) -> V3<V3<T>>
[src]
get the columns of the matrix as a vectors
Trait Implementations
impl<T: Num + Copy> Add<M33<T>> for M33<T>
[src]
type Output = Self
The resulting type after applying the +
operator.
fn add(self, rhs: Self) -> Self
[src]
impl<T: Clone> Clone for M33<T>
[src]
impl<T: Copy> Copy for M33<T>
[src]
impl<T: Debug> Debug for M33<T>
[src]
impl<T> Deref for M33<T>
[src]
type Target = [[T; 3]; 3]
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
[src]
impl<T> DerefMut for M33<T>
[src]
impl<T: Num + Display> Display for M33<T>
[src]
impl<T> From<[[T; 3]; 3]> for M33<T>
[src]
impl<T> Index<(usize, usize)> for M33<T>
[src]
impl<T> IndexMut<(usize, usize)> for M33<T>
[src]
impl<T: Float + Sum> LinearAlgebra<T> for M33<T>
[src]
fn rows(&self) -> usize
[src]
fn cols(&self) -> usize
[src]
fn transpose(&self) -> M33<T>
[src]
fn trace(&self) -> T
[src]
fn norm2(&self) -> T
[src]
fn det(&self) -> T
[src]
fn inverse(&self) -> Option<Self>
[src]
fn qr(&self) -> Option<(Self, Self)>
[src]
Calculate de QR factorization of the M33 via gram-schmidt orthogonalization process
fn shape(&self) -> (usize, usize)
[src]
impl<T: Num + Copy> Mul<M33<T>> for M33<T>
[src]
type Output = Self
The resulting type after applying the *
operator.
fn mul(self, rhs: Self) -> Self
[src]
impl<T: Num + Copy> Mul<M33<T>> for V3<T>
[src]
type Output = V3<T>
The resulting type after applying the *
operator.
fn mul(self, rhs: M33<T>) -> V3<T>
[src]
impl<T: Num + Copy> Mul<T> for M33<T>
[src]
type Output = M33<T>
The resulting type after applying the *
operator.
fn mul(self, rhs: T) -> Self::Output
[src]
impl<T: Num + Copy> Mul<V3<T>> for M33<T>
[src]
type Output = V3<T>
The resulting type after applying the *
operator.
fn mul(self, rhs: V3<T>) -> V3<T>
[src]
impl<T: Num + Copy> One for M33<T>
[src]
fn one() -> M33<T>
[src]
Create an identity matrix
fn set_one(&mut self)
[src]
fn is_one(&self) -> bool where
Self: PartialEq<Self>,
[src]
Self: PartialEq<Self>,
impl<T: PartialEq> PartialEq<M33<T>> for M33<T>
[src]
impl<T> StructuralPartialEq for M33<T>
[src]
impl<T: Num + Copy> Sub<M33<T>> for M33<T>
[src]
type Output = Self
The resulting type after applying the -
operator.
fn sub(self, rhs: Self) -> Self
[src]
impl<T: Num + Copy> Zero for M33<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for M33<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for M33<T> where
T: Send,
T: Send,
impl<T> Sync for M33<T> where
T: Sync,
T: Sync,
impl<T> Unpin for M33<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for M33<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,