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

#[repr(C)]pub struct XYZWAB<N: Scalar> {
    pub x: N,
    pub y: N,
    pub z: N,
    pub w: N,
    pub a: N,
    pub b: 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

x: Ny: Nz: Nw: Na: Nb: N

Trait Implementations

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

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

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

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

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

impl<N: PartialEq + Scalar> PartialEq<XYZWAB<N>> for XYZWAB<N>[src]

impl<N: Scalar> StructuralEq for XYZWAB<N>[src]

impl<N: Scalar> StructuralPartialEq for XYZWAB<N>[src]

Auto Trait Implementations

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

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

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

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

impl<N> UnwindSafe for XYZWAB<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> 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>,