Struct nalgebra::base::coordinates::M6x2[][src]

#[repr(C)]
pub struct M6x2<T: Scalar> { pub m11: T, pub m21: T, pub m31: T, pub m41: T, pub m51: T, pub m61: T, pub m12: T, pub m22: T, pub m32: T, pub m42: T, pub m52: T, pub m62: T, }

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: Tm21: Tm31: Tm41: Tm51: Tm61: Tm12: Tm22: Tm32: Tm42: Tm52: Tm62: T

Trait Implementations

impl<T: Clone + Scalar> Clone for M6x2<T>[src]

impl<T: Copy + Scalar> Copy for M6x2<T>[src]

impl<T: Debug + Scalar> Debug for M6x2<T>[src]

impl<T: Eq + Scalar> Eq for M6x2<T>[src]

impl<T: Hash + Scalar> Hash for M6x2<T>[src]

impl<T: PartialEq + Scalar> PartialEq<M6x2<T>> for M6x2<T>[src]

impl<T: Scalar> StructuralEq for M6x2<T>[src]

impl<T: Scalar> StructuralPartialEq for M6x2<T>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for M6x2<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> Same<T> for T[src]

type Output = T

Should always be Self

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>,