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

#[repr(C)]
pub struct M4x4<N: Scalar> { pub m11: N, pub m21: N, pub m31: N, pub m41: N, pub m12: N, pub m22: N, pub m32: N, pub m42: N, pub m13: N, pub m23: N, pub m33: N, pub m43: N, pub m14: N, pub m24: N, pub m34: N, pub m44: 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 M4x4<N>
[src]

impl<N: PartialEq + Scalar> PartialEq for M4x4<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 M4x4<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 M4x4<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 M4x4<N>
[src]

[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

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

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