Struct nalgebra::core::coordinates::XYZWA [] [src]

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

Trait Implementations

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

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

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

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

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