[][src]Struct na::base::coordinates::M6x4

#[repr(C)]pub struct M6x4<N> where
    N: Scalar
{ pub m11: N, pub m21: N, pub m31: N, pub m41: N, pub m51: N, pub m61: N, pub m12: N, pub m22: N, pub m32: N, pub m42: N, pub m52: N, pub m62: N, pub m13: N, pub m23: N, pub m33: N, pub m43: N, pub m53: N, pub m63: N, pub m14: N, pub m24: N, pub m34: N, pub m44: N, pub m54: N, pub m64: N, }

Data structure used to provide access to matrix and vector coordinates with the dot notation, e.g., v.x is the same as v[0] for a vector.

Fields

m11: Nm21: Nm31: Nm41: Nm51: Nm61: Nm12: Nm22: Nm32: Nm42: Nm52: Nm62: Nm13: Nm23: Nm33: Nm43: Nm53: Nm63: Nm14: Nm24: Nm34: Nm44: Nm54: Nm64: N

Trait Implementations

impl<N> Clone for M6x4<N> where
    N: Scalar + Clone
[src]

impl<N> Copy for M6x4<N> where
    N: Scalar + Copy
[src]

impl<N> Debug for M6x4<N> where
    N: Scalar + Debug
[src]

impl<N> Eq for M6x4<N> where
    N: Scalar + Eq
[src]

impl<N> Hash for M6x4<N> where
    N: Scalar + Hash
[src]

impl<N> PartialEq<M6x4<N>> for M6x4<N> where
    N: Scalar + PartialEq<N>, 
[src]

impl<N> StructuralEq for M6x4<N> where
    N: Scalar
[src]

impl<N> StructuralPartialEq for M6x4<N> where
    N: Scalar
[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for M6x4<N> where
    N: RefUnwindSafe

impl<N> Send for M6x4<N> where
    N: Send

impl<N> Sync for M6x4<N> where
    N: Sync

impl<N> Unpin for M6x4<N> where
    N: Unpin

impl<N> UnwindSafe for M6x4<N> where
    N: 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> IntoPnt<Point<T, U2>> for T where
    T: Scalar
[src]

impl<T> IntoPnt<Point<T, U3>> for T where
    T: Scalar
[src]

impl<T> IntoPnt<Point<T, U4>> for T where
    T: Scalar
[src]

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,